Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: How to retrive the Table Description

    try this

     

    select sysobjects.name as TableName ,syscolumns.name as ColumnName ,systypes.name as TypeData from

    sysobjects inner join

    syscolumns  on sysobjects.id = syscolumns.id        inner join

    systypes    on syscolumns.xtype = systypes.xtype

    where sysobjects.name = 'your table'

  • RE: Removing blank spaces in records.

    If your data in a column in table try this :

     

    update [Name of Table] set name [Name of Column] = REPLACE ( [Name of Column] ,'...

  • RE: Copy tables to another server

    Mr Steve

    I've tried this script on database with size about 1.5 GB , and it took about 14 minutes.

Viewing 3 posts - 1 through 3 (of 3 total)