由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - 创建数据库问题
相关主题
被microsoft 给惊呆了 SYBASE: truncation point 问题
大家都创建过什么样的数据库阿?which one is faster? truncate or delete?
Re: Is there any easy way to truncate the LDF file of SQL SERVER?Database Interview Questions
Oracle求助,thanks!!!SQL 2005 Intergration Service Q
Import data from excel into sql server 2000sql server 怎么关掉log
Truncation error import csv file to SQL tabledelete
Is there any easy way to truncate the LDF file of SQL SERVER?error file或者exception file
Access 'memo' data typeINSERT or UPDATE, which is faster?
相关话题的讨论汇总
话题: uminiature话题: mysql话题: 数据库话题: db话题: 创建
进入Database版参与讨论
1 (共1页)
m*******e
发帖数: 18
1
已有一个数据库A,想创建一个新的数据库B,B除了没有A里面的数据外,其他的和A完
全一样。有什么好的办法吗?
本人新手,欢迎拍砖。
c****n
发帖数: 89
2
For MySQL:
mysqldump -uminiature -p*** -d db_A | mysql -uminiature -p*** db_B

【在 m*******e 的大作中提到】
: 已有一个数据库A,想创建一个新的数据库B,B除了没有A里面的数据外,其他的和A完
: 全一样。有什么好的办法吗?
: 本人新手,欢迎拍砖。

a*******t
发帖数: 891
3
script database objects
or backup, restore as DatabaseB, and then truncate all the data

【在 m*******e 的大作中提到】
: 已有一个数据库A,想创建一个新的数据库B,B除了没有A里面的数据外,其他的和A完
: 全一样。有什么好的办法吗?
: 本人新手,欢迎拍砖。

G********d
发帖数: 593
4


【在 a*******t 的大作中提到】
: script database objects
: or backup, restore as DatabaseB, and then truncate all the data

c*****y
发帖数: 75
5
复制表(只复制结构,源表名:a 新表名:b) (Access可用)
法一:select * into b from a where 1<>1
法二:select top 0 * into b from a
1 (共1页)
进入Database版参与讨论
相关主题
INSERT or UPDATE, which is faster?Import data from excel into sql server 2000
truncate和delete在ORACLE里有什么区别?Truncation error import csv file to SQL table
谁能帮我看看这个sql query的优化Is there any easy way to truncate the LDF file of SQL SERVER?
面试回来发考题1Access 'memo' data type
被microsoft 给惊呆了 SYBASE: truncation point 问题
大家都创建过什么样的数据库阿?which one is faster? truncate or delete?
Re: Is there any easy way to truncate the LDF file of SQL SERVER?Database Interview Questions
Oracle求助,thanks!!!SQL 2005 Intergration Service Q
相关话题的讨论汇总
话题: uminiature话题: mysql话题: 数据库话题: db话题: 创建