zoukankan      html  css  js  c++  java
  • 有关sybase的一些零星经验

    clear transaction log
    >dump transaction master with truncate_only
    >dump transaction master with no_log
     
    character set
    - the character set of server
      exec sp_helpsort
    - the character set of client
      select @@client_csname
    - all character set installed on the server
      select * from syscharsets
    - change character set(e.g. change character set to UTF-8)
      1. install character set if not exesits in syscharsets;
          CMD> C:sybaseASE-12_5incharset.exe -U[username] -P[password] binary.srt UTF8
      2. Get the ID of the new character set;
          Run SQL: select * from syscharsets, find the ID of UTF-8 in the result set;
      3. set character set
          sp_configure 'default character set id', ID
      4. restart sybase server;
  • 相关阅读:
    go
    go
    go
    postgresql
    go
    go
    sql
    铂金软件公司
    HRIS 的价值评估
    [转]数据库SQL优化大总结之 百万级数据库优化方案
  • 原文地址:https://www.cnblogs.com/larson/p/3419024.html
Copyright © 2011-2022 走看看