我有种最简单的方法:
1.先把B数据库中的B表删除
drop table B..B
2.再执行下面语句就可以达到你的要求
select * into B..B from A..A
insert into B..B select * from A..A
B表的列timestamp 是不是设置成了不允许为空了,而A
表插入的记录有空值的吧
insert into B..B select * from A..A
or
insert into B.dbo..B select * from A.dbo.A
两张表的属性完全一样吗?每个字段的属性是一样吗?你先查看以下,sql语句应该没什么问题的.