Forum Replies Created

Viewing 5 posts - 316 through 321 (of 321 total)

  • RE: How to find a table existed or not?

    Use the script below

    IF EXISTS (SELECT 1

    FROM INFORMATION_SCHEMA.TABLES

    WHERE TABLE_TYPE='BASE TABLE'

    AND TABLE_NAME='tablename')

    ...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Log file full

    Why dont you shrink the log file by using the following command

    USE DatabaseName

    GO

    DBCC SHRINKFILE( , 1)

    ...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: call external stored procedure

    Executing a stored procedure on another database / server is very easy: follow the following steps:

    1. if you have to execute stored procedure in the same server but in different...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: urgent

    The first thing to remember is that the data to be passing in the Stored procedure must be of same datatype as declared for the particular parameter, and if not,...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: linkserver - Open Data Connection

    Try to use the Server name before the table name: as

    [ServerName].[schema].Table

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

Viewing 5 posts - 316 through 321 (of 321 total)