Forum Replies Created

Viewing 15 posts - 151 through 165 (of 215 total)

  • RE: How many Records Will Get Selected

    Hi i know this answer it was syntax wrong but i put 1 as wrong anwer.

    because i thought that there may wrong with script.I know that this script will give...

  • RE: Model DB

    CirquedeSQLeil (6/9/2010)


    malleswarareddy_m (6/9/2010)


    I put it newreadonly but still it allows to create a table. which is not possible with setting with tool. (database properties----readonly---true.)

    then create new db with wizard. It...

  • RE: Model DB

    I put it newreadonly but still it allows to create a table. which is not possible with setting with tool. (database properties----readonly---true.)

    then create new db with wizard. It automatically creates...

  • RE: Model DB

    hi without the script i set the model database into read only.then i create the new database but i am not able to create the new table because it is...

  • RE: Stored Procedure Execution

    I got wrong.Thought that it will give error the sp_ ...... procedure already exists if the procedure name alreay in master database.

  • RE: T-SQL

    I got wrong.First I checked for hours and then i thought 7.and guess that with additon of minutes into hours ,answer is 8. and i did not checked minutes.start minutes...

  • RE: Index list in Server Management studio

    this may be worked.i checked for my database.Please suggest me if it is wrong.

    select

    case when index_id=1 then 'Clustered'

    else 'Non-Clustered' end as [Index Column],

    T.name as [Table name],C.name as [ColumnName]

    from...

  • RE: Index list in Server Management studio

    This query will give the result

    select i.name as [Index],i.type_desc as [Index type],T.name as [Table name],C.name as [ColumnName]

    from sys.tables T inner join sys.columns C on C.object_id=T.object_id

    inner join sys.indexes i on...

  • RE: set ansi_nulls

    UMG Developer (6/1/2010)


    malleswarareddy_m (6/1/2010)


    UMG Developer (6/1/2010)


    Wow, I happened to be the first to answer it, and I got it right. 🙂

    Though not for the reason you stated, as it makes...

  • RE: set ansi_nulls

    UMG Developer (6/1/2010)


    Wow, I happened to be the first to answer it, and I got it right. 🙂

    Though not for the reason you stated, as it makes no difference if...

  • RE: set ansi_nulls

    good question.Excellent explanation.

  • RE: How do I create a Linked Server

    USE master

    GO

    -- To use named parameters:

    EXEC sp_addlinkedserver

    @server = 'SF-PC035',

    @srvproduct = '',

    @provider = 'SQLNCLI',

    @provstr = 'DRIVER={SQL Server};SERVER=SF-PC035\sqlexpress;userid=sa;password="password";'

    EXEC sp_addlinkedsrvlogin 'SF-PC035', 'false', NULL, 'sa', 'password'

    sp_addlinkedserver is for creating...

  • RE: Clearing the Transaction Log

    Today i learned new topic about VLF.

  • RE: SQL syntax

    I did not understand this question.in question it shows that to select wrong sytax.but all resturns table data without any error.then i did not found the wrong answer.so i applied...

  • RE: DDL trigger

    good question.

    when SET IMPLICIT_TRANSACTIONS off it will shows two times and other wise if we put SET IMPLICIT_TRANSACTIONS on then second time it shows "invalid object".This is due to SET...

Viewing 15 posts - 151 through 165 (of 215 total)