-->title:刪除資料庫裡某個使用者所有表裡的資料
-->author:wufeng4552
-->date :2009-09-21 15:08:41
--方法1
declare @uname varchar(20)
declare cuser cursor for
select so.name
from sysobjects so,sysusers su where so.uid=su.uid and su.name='stone'
and so.xtype='u'
open cuser
fetch next from cuser into @uname
while(@@fetch_status=0)
begin
exec('truncate table [stone].['+@uname+']')
fetch next from cuser
endclose cuser
deallocate cuser
--方法2
exec sp_msforeachtable @command1="truncate table ? ;",@whereand='and schema_id = (select schema_id from sys.schemas where [name] =''stone'')'
刪除資料庫使用者
usr bin ksh 1 upload the shell command to the server 2 grant the 777 to the command 3 use method like as follow dropuser.sh username the username as t...
MS SQL入門基礎 刪除資料
11.2.1 delete 語法 delete 語句用來從表中刪除資料,其語法為 各引數說明如下 from 此引數為可選選項,用於連線delete 關鍵字和要刪除資料的物件名稱。table name 指定要刪除資料的表。with n 指定乙個或多個目標表允許的表提示。view name 指定用於刪除...
刪除資料庫裡記錄數為0的表。 批量刪除表
接了個活,要從原來的資料 庫里導資料。一看300多張表,仔細一看,200多個是一條記錄也沒有的。暈死。下面是如何刪除 得到資料庫中所有表的空間 記錄情況 create table t 表名 sysname,記錄數 int 保留空間 varchar 10 使用空間 varchar 10 索引使用空間 ...