数据库对象的引用格式:
数据库名.对象属主名.对象名
在当前数据库中操作本数据库的对象,可以省略数据库名。
操作当前连接用户所拥有的数据库对象时可以省略对象属主名。
在当前数据库中操作当前用户所拥有的数据库对象,数据库名、属主名均可省略
例如:
1> select name from master..syslogins
2> go
name
------------------------------
probe
sa
testuser
判断一下数据库test能否做日志备份?
select tran_dumpable_status("test")
备份
1> dump transaction test to 'c:/sap/log.dump' with no_truncate
2> go
Backup Server session id is: 5. Use this value when executing the
'sp_volchanged' system stored procedure after fulfilling any volume change
request from the Backup Server.
Backup Server: 4.41.1.1: Creating new disk file c:/sap/log.dump.
Backup Server: 6.28.1.1: Dumpfile name 'test162450DABA ' section number 1
mounted on disk file 'c:/sap/log.dump'
Backup Server: 4.58.1.1: Database test: 8 kilobytes DUMPED.
Backup Server: 3.43.1.1: Dump phase number 3 completed.
Backup Server: 4.58.1.1: Database test: 12 kilobytes DUMPED.
Backup Server: 3.42.1.1: DUMP is complete (database test).
Adds new columns to a table; drops or modifies existing columns; adds, changes, or drops constraints; changes properties of an existing table; enables or disables triggers on a table, changes the compression level of a table.
Supports adding, dropping, and modifying computed columns, and enables the materialized property, nullability, or definition of an existing computed column to be changed.
Partitions and repartitions a table with specified partition strategy, or adds partitions to a table with existing partitions.
If CIS is enabled, you cannot use drop for remote servers.
需要关闭CIS。
1> alter table table1 drop name
2> go
1> dump database test to 'c:\sap_data1\test.dup'
2> go
Backup Server: 4.171.1.1: The current value of 'reserved pages threshold' is
85%.
Backup Server: 4.171.1.2: The current value of 'allocated pages threshold' is
40%.
Backup Server: 4.171.1.5: The current value of 'parallel scan' is 2.
Backup Server session id is: 20. Use this value when executing the
'sp_volchanged' system stored procedure after fulfilling any volume change
request from the Backup Server.
Backup Server: 4.41.1.1: Creating new disk file c:\sap_data1\test.dup.
Backup Server: 6.28.1.1: Dumpfile name 'test162450C128 ' section number 1
mounted on disk file 'c:\sap_data1\test.dup'
Backup Server: 4.188.1.1: Database test: 804 kilobytes (39%) DUMPED.
Backup Server: 4.188.1.1: Database test: 1074 kilobytes (100%) DUMPED.
Backup Server: 3.43.1.1: Dump phase number 1 completed.
Backup Server: 3.43.1.1: Dump phase number 2 completed.
Backup Server: 4.188.1.1: Database test: 1080 kilobytes (100%) DUMPED.
Backup Server: 3.43.1.1: Dump phase number 3 completed.
Backup Server: 4.188.1.1: Database test: 1084 kilobytes (100%) DUMPED.
Backup Server: 3.42.1.1: DUMP is complete (database test).
1>
进行恢复:
1> load database test from 'c:\sap_data1\test.dup'
2> go
Backup Server session id is: 27. Use this value when executing the
'sp_volchanged' system stored procedure after fulfilling any volume change
request from the Backup Server.
Backup Server: 6.28.1.1: Dumpfile name 'test162450C128 ' section number 1
mounted on disk file 'c:\sap_data1\test.dup'
Backup Server: 4.188.1.1: Database test: 4740 kilobytes (38%) LOADED.
Backup Server: 4.188.1.1: Database test: 12294 kilobytes (100%) LOADED.
Backup Server: 4.188.1.1: Database test: 12304 kilobytes (100%) LOADED.
Backup Server: 3.42.1.1: LOAD is complete (database test).
Started estimating recovery log boundaries for database 'test'.
Database 'test', checkpoint=(1559, 21), first=(1559, 21), last=(1559, 21).
Completed estimating recovery log boundaries for database 'test'.
Started ANALYSIS pass for database 'test'.
Completed ANALYSIS pass for database 'test'.
Started REDO pass for database 'test'. The total number of log records to
process is 1.
Completed REDO pass for database 'test'.
Use the ONLINE DATABASE command to bring this database online; ASE will not
bring it online automatically.
上线数据库
1> online database test
2> go
Started estimating recovery log boundaries for database 'test'.
Database 'test', checkpoint=(1559, 21), first=(1559, 21), last=(1559, 21).
Completed estimating recovery log boundaries for database 'test'.
Started ANALYSIS pass for database 'test'.
Completed ANALYSIS pass for database 'test'.
Recovery of database 'test' will undo incomplete nested top actions.
Database 'test' is now online.
sp_configure "allow update",1
go
update sysservers set srvname='SYB_BACKUP', srvnetname='服务器名_BS' where srvid=1
go
sp_configure "allow update",0
go
Select * from sysservers(查看名字)
C:\Users>bcp test..table1 out test.txt -c -t -U testuser -P testuser –S sybase
Starting copy...
3 rows copied.
Clock Time (ms.): total = 31 Avg = 10 (96.77 rows per sec.)
导入命令
C:\Users>bcp test..table1 in test.txt -c -t -U testuser -P testuser -S H sybase
Starting copy...
导入后查看已经存在。如果出错
You cannot run the non-logged version of bulk copy in this database.
查看常见错误。
索引
查看索引
sp_help 表名
sp_helpindex 表名
删除索引
drop index 表名.索引名
规则
规则是可以理解为对数据库、某一列、某用户数据类型的限制。
Create rule 规则名 as 变量=表达式
绑订:sp_bindrule 规则名,‘表.列名’
规则必须绑订,规则才能生效。
解除绑订
sp_unbindrule ‘表.列名’
删除规则
drop rule 规则名
例如:
创建规则:
1> create rule rul_name as @state in ('ca','co','wa')
2> go
绑定列
2> sp_bindrule "rul_name","table1.name"
3> go
解绑
1> sp_unbindrule 'table1.name'
2> go
删除规则
1> drop rule rul_name
2> go
存储过程
建立存储过程
create proc 过程名 as
select_statement
调用存储过程:
直接写过程名,如果不是批处理的第一条命令,则要加“exec”。
常见错误
导入数据
You cannot run the non-logged version of bulk copy in this database.
答:原因为数据库没有启用bulk copy选项,解决办法如下:
1> use master
2> go
1> sp_dboption test,"select into/bulkcopy", true
2> go
Can't open a connection to site 'SYB_BACKUP'
master库sysservers表的SYB_BACKUP对应的srvnetname与dsedit中的备份服务名不一致
选择 adaptive server -- configure adaptive server
选择正确的server,输入sa口令,选择‘default backup server’,输入:SYBASE_BS(备份服务器名字)。
WINDWOS上,重启了SYBASE,然后启动SYBASE_BS就好了。
Backup Server: 4.133.2.1: Invalid path or no execute permission for multibuffering subprocess binary: C:\SAP\bin\sybmbuf.exe
路径问题,在C:\SAP\bin中没有sybmbuf.exe文件。
Database in use. A user with System Administrator (SA) role must have exclusive use of database to run load.
退出登陆的数据库连接。
附录
系统表及过程
Name Owner Object_type
---------------------------- ----- ----------------
syscacheinfo dbo view
syscachepoolinfo dbo view
syspoolinfo dbo view
sysquerymetrics dbo view
ijdbc_function_escapes dbo user table
jdbc_function_escapes dbo user table
monCIPC dbo user table
monCIPCEndpoints dbo user table
monCIPCLinks dbo user table
monCIPCMesh dbo user table
monCLMObjectActivity dbo user table
monCMSFailover dbo user table
monCachePool dbo user table
monCachedObject dbo user table
monCachedProcedures dbo user table
monCachedStatement dbo user table
monClusterCacheManager dbo user table
monDBRecovery dbo user table
monDBRecoveryLRTypes dbo user table
monDataCache dbo user table
monDeadLock dbo user table
monDeviceIO dbo user table
monDeviceSpaceUsage dbo user table
monEngine dbo user table
monErrorLog dbo user table
monFailoverRecovery dbo user table
monHADRMembers dbo user table
monIOController dbo user table
monIOQueue dbo user table
monInmemoryStorage dbo user table
monLicense dbo user table
monLockTimeout dbo user table
monLocks dbo user table
monLogicalCluster dbo user table
monLogicalClusterAction dbo user table
monLogicalClusterInstance dbo user table
monLogicalClusterRoute dbo user table
monMemoryUsage dbo user table
monNetworkIO dbo user table
monOpenDatabases dbo user table
monOpenObjectActivity dbo user table
monOpenPartitionActivity dbo user table
monPCIBridge dbo user table
monPCIEngine dbo user table
monPCISlots dbo user table
monPCM dbo user table
monProcedureCache dbo user table
monProcedureCacheMemoryUsage dbo user table
monProcedureCacheModuleUsage dbo user table
monProcess dbo user table
monProcessActivity dbo user table
monProcessLookup dbo user table
monProcessMigration dbo user table
monProcessNetIO dbo user table
monProcessObject dbo user table
monProcessProcedures dbo user table
monProcessSQLText dbo user table
monProcessStatement dbo user table
monProcessWaits dbo user table
monProcessWorkerThread dbo user table
monRepCoordinator dbo user table
monRepLogActivity dbo user table
monRepMemoryStatistics dbo user table
monRepScanners dbo user table
monRepScannersTotalTime dbo user table
monRepSchemaCache dbo user table
monRepSenders dbo user table
monRepStreamStatistics dbo user table
monRepSyncTaskStatistics dbo user table
monRepTruncationPoint dbo user table
monSQLRepActivity dbo user table
monSQLRepMisses dbo user table
monServiceTask dbo user table
monSpinlockActivity dbo user table
monState dbo user table
monStatementCache dbo user table
monSysExecutionTime dbo user table
monSysLoad dbo user table
monSysPlanText dbo user table
monSysSQLText dbo user table
monSysStatement dbo user table
monSysWaits dbo user table
monSysWorkerThread dbo user table
monTableColumns dbo user table
monTableCompression dbo user table
monTableParameters dbo user table
monTableTransfer dbo user table
monTables dbo user table
monTask dbo user table
monTempdbActivity dbo user table
monThread dbo user table
monThreadPool dbo user table
monThresholdEvent dbo user table
monWaitClassInfo dbo user table
monWaitEventInfo dbo user table
monWorkQueue dbo user table
monWorkload dbo user table
monWorkloadPreview dbo user table
monWorkloadProfile dbo user table
monWorkloadRaw dbo user table
spt_ijdbc_conversion dbo user table
spt_ijdbc_mda dbo user table
spt_ijdbc_table_types dbo user table
spt_jdbc_conversion dbo user table
spt_jdbc_table_types dbo user table
spt_jtext dbo user table
spt_limit_types dbo user table
spt_mda dbo user table
spt_monitor dbo user table
spt_values dbo user table
syblicenseslog dbo user table
sysalternates dbo system table
sysattributes dbo system table
syscertificates dbo system table
syscharsets dbo system table
syscolumns dbo system table
syscomments dbo system table
sysconfigures dbo system table
sysconstraints dbo system table
syscurconfigs dbo system table
sysdams dbo system table
sysdatabases dbo system table
sysdepends dbo system table
sysdevices dbo system table
sysencryptkeys dbo system table
sysengines dbo system table
sysgams dbo system table
sysindexes dbo system table
sysjars dbo system table
syskeys dbo system table
syslanguages dbo system table
syslisteners dbo system table
syslocks dbo system table
sysloginroles dbo system table
syslogins dbo system table
syslogs dbo system table
syslogshold dbo system table
sysmessages dbo system table
sysmonitors dbo system table
sysobjects dbo system table
sysoptions dbo system table
syspartitionkeys dbo system table
syspartitions dbo system table
sysprocedures dbo system table
sysprocesses dbo system table
sysprotects dbo system table
sysqueryplans dbo system table
sysreferences dbo system table
sysremotelogins dbo system table
sysresourcelimits dbo system table
sysroles dbo system table
syssecmechs dbo system table
syssegments dbo system table
sysservers dbo system table
syssessions dbo system table
sysslices dbo system table
syssrvroles dbo system table
sysstatistics dbo system table
systabstats dbo system table
systestlog dbo system table
systhresholds dbo system table
systimeranges dbo system table
systransactions dbo system table
systypes dbo system table
sysusages dbo system table
sysusermessages dbo system table
sysusers dbo system table
sysxtypes dbo system table
mon_authorize_non_sa dbo stored procedure
mon_rpc_attach dbo stored procedure
mon_rpc_connect dbo stored procedure
sp_addconf dbo stored procedure
sp_autoformat dbo stored procedure
sp_aux_checkroleperm dbo stored procedure
sp_aux_getsize dbo stored procedure
sp_check_remote_tempdb dbo stored procedure
sp_configure dbo stored procedure
sp_dboption dbo stored procedure
sp_dboption_flmode dbo stored procedure
sp_dropdevice dbo stored procedure
sp_getmessage dbo stored procedure
sp_instmsg dbo stored procedure
sp_loaddbupgrade dbo stored procedure
sp_namecrack dbo stored procedure
sp_probe_xact dbo stored procedure
sp_procxmode dbo stored procedure
sp_prtsybsysmsgs dbo stored procedure
sp_remotesql dbo stored procedure
sp_validlang dbo stored procedure