shutdown abort;
startup mount exclusive restrict;
drop database_name;
exit;
2010年6月29日 星期二
Oracle imp/exp file
exp userid/password@SID file=d:\file_name.dmp full=y;
imp userid/password@SID file=d:\file_name.dmp ignore=y tables=(table1);
tables=(table1) is option
imp userid/password@SID file=d:\file_name.dmp ignore=y tables=(table1);
tables=(table1) is option
2010年6月14日 星期一
MS SQL rename table
ALTER TABLE tablename RENAME TO footable
EXEC sp_rename 'OldTableName', 'NewTableName'
EXEC sp_rename
@objname = 'TableName.OldColumnName',
@newname = 'NewColumnName',
@objtype = 'COLUMN'
訂閱:
文章 (Atom)