Some in common use sentence....

1.Get the run Sql cost time.

use study

declare @idte_date datetime

set @idte_date=getdate()

select * from tb_user

select [This sql Query cost time] = datediff(ms,@idte_date,getdate())

 

2. Copy table structure(no include table recorde) or copy a integrity table to a new table.

---only copy table structure,not copy the table's record

select top 0 * into tb_new_name from tb_old_name

 

---copy table structure and the table's record

select * into tb_new_name from tb_old_name

3.1Describe a table structure(method 1) 

Create view fielddesc    
as
select o.name as table_name,c.name as field_name,t.name as type,c.length as 

length,c.isnullable 
as isnullable,convert(varchar(30),p.value) as desp 
from syscolumns c  
join systypes t on c.xtype = t.xusertype
join sysobjects o on o.id=c.id 
left join    sysproperties p on p.smallid=c.colid and p.id=o.id    
where o.xtype='U'

Sql Run time :

Select * from fielddesc where table_name = 'your_tb_name'

 

3.2Describe a table structure(method 2)

SELECT 
 (
case when a.colorder=1 then d.name else '' end) N'表名',
 a.colorder N
'字段序号',
 a.name N
'字段名',
 (
case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then '√'else '' end) N'标识',
 (
case when (SELECT count(*)
 
FROM sysobjects
 
WHERE (name in
           (
SELECT name
          
FROM sysindexes
          
WHERE (id = a.id) AND (indid in
                    (
SELECT indid
                   
FROM sysindexkeys
                   
WHERE (id = a.id) AND (colid in
                             (
SELECT colid
                            
FROM syscolumns
                            
WHERE (id = a.id) AND (name = a.name))))))) AND
        (xtype 
= 'PK'))>0 then '√' else '' end) N'主键',
 b.name N
'类型',
 a.length N
'占用字节数',
 
COLUMNPROPERTY(a.id,a.name,'PRECISION'as N'长度',
 
isnull(COLUMNPROPERTY(a.id,a.name,'Scale'),0as N'小数位数',
 (
case when a.isnullable=1 then '√'else '' end) N'允许空',
 
isnull(e.text,'') N'默认值',
 
isnull(g.[value],''AS N'字段说明'
--into ##tx

FROM  syscolumns  a left join systypes b 
on  a.xtype=b.xusertype
inner join sysobjects d 
on a.id=d.id  and  d.xtype='U' and  d.name<>'dtproperties'
left join syscomments e
on a.cdefault=e.id
left join sysproperties g
on a.id=g.id AND a.colid = g.smallid  
order by object_name(a.id),a.colorder

posted on 2006-04-27 17:51  封起De日子  阅读(118)  评论(0编辑  收藏  举报

导航