sql 2000清空后让表的id从1开始等数据库操作

truncate table 表名 (

数据不可恢复性的删除 truncate 标识列会重排 )

linqutil.db.executecommand(“truncate table warehousing”); //warehousing为表名,此种删除效率更高,且会清空计数器,但是有外键的表则不能用,可以通过删除外键后使用

linqutil.db.executecommand(“delete ioinfo”); //因为此种删除不能清空计数器,所以下面还的清空

linqutil.db.executecommand(“dbcc checkident(ioinfo,reseed,0)”); //清空计数器,ioinfo为表名

linqutil.db.submitchanges();

清空表后执行

dbcc checkident(表名,reseed,起始值)

如:

你要把表 employee 的id清空后从1开始

dbcc checkident(employee,reseed,0)–你添加了一条数据,从起始值开始加1

————————————————————————————-

使用sql语句清空数据库所有表的数据

近来发现数据库过大,空间不足,因此打算将数据库的数据进行全面的清理,但表非常多,一张一张的清空,实在麻烦,因此就想利用sql语句一次清空所有数据.找到了三种方法进行清空.使用的数据库为ms sql server.

1.搜索出所有表名,构造为一条sql语句


复制代码 代码如下:

declare @trun_name varchar(8000)

set @trun_name=”

select @trun_name=@trun_name + ‘truncate table ‘ + [name] + ‘ ‘ from sysobjects where xtype=’u’ and status > 0

exec (@trun_name)

该方法适合表不是非常多的情况,否则表数量过多,超过字符串的长度,不能进行完全清理.

2.利用游标清理所有表


复制代码 代码如下:

declare @trun_name varchar(50)

declare name_cursor cursor for

select ‘truncate table ‘ + name from sysobjects where xtype=’u’ and status > 0

open name_cursor

fetch next from name_cursor into @trun_name

while @@fetch_status = 0

begin

exec (@trun_name)

print ‘truncated table ‘ + @trun_name

fetch next from name_cursor into @trun_name

end

close name_cursor

deallocate name_cursor

这是我自己构造的,可以做为存储过程调用, 能够一次清空所有表的数据,并且还可以进行有选择的清空表.

3.利用微软未公开的存储过程

exec sp_msforeachtable “truncate table ?”

该方法可以一次清空所有表,但不能加过滤条件.

—————————————————————————–

清空表sql语句

可以使用delete清空表

delete from t表名

也可以使用truncate命令

truncate table 表名

create table 表名 [表约束]

(列名1 数据类型 [缺省值1,列约束1]

(列名2 数据类型 [缺省值2,列约束2]



列名n 数据类型 [缺省值n,列约束n]

[tablespace 表空间名称]

[storage (存贮的子句)]

[enable 约束名]

[disable 约束名]

? 插入数据

insert into 表名[(列名1,…)]

values(值1,值2,…,值n)

? 修改数据

update 表名set 列名1=表达式1,列名2=表达式2,…

where 条件;

? 删除数据

删除表中已有数据,不能删除不存在的数据。

语句句法:

delete from 表名 where 条件;

? 表结构的修改

在已存在的表中增加新列,语句句法:

alter table 表名 add(新列名 数据类型(长度));

例如:

alter table student add (department char(8));

b.增加已有列的数据类型。

例如:

alter table student modify(name varchar2(25));

? 表的删除

将已经存在的表删除,语句句法:

drop table表名;

例如:

drop table emp;

? 查询语句

select命令的语法为:

select [distinct|all] {*|模式名.] {表名|视图名|

快照名] .*…| {表达式[列别名]…} } [, [模式名. ] {表名|

视图名|} .*…| 表达式[列别名] ]…

from [模式名.] {表名|视图名|快照名} [@数据库链名] [表别名]

[, [模式名.] {表名|视图名|快照名} [@数据库链名]

[表别名] ]…

[where条件]

[start with条件 connect by 条件]

[group by表达式[,表达式] …[having条件]

[union|union all |intersect|minus]select命令

[order by{表达式|位置} [asc|desc] [, {表达式|位置[asc|desc]}]…]

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐