Forum Replies Created

Viewing 15 posts - 4,051 through 4,065 (of 8,416 total)

  • RE: Linked server

    NJ-DBA (4/7/2010)


    unless the linked server is configured with a specific login to use--- if you look at the properties of the linked server it will have defined the security context...

  • RE: staging table and indexes

    USE tempdb;

    GO

    CREATE TABLE dbo.A (a INT NOT NULL);

    CREATE TABLE dbo.B (b INT NOT NULL, c INT NOT NULL);

    GO

    INSERT dbo.A (a) VALUES (1);

    INSERT dbo.B (b, c) VALUES (2, 3)

    GO

    CREATE...

  • RE: What is the use of CASCADE?

    rvasanth (4/7/2010)


    If Table2.FieldId is foregin keyof table1.FieldId and if we have casecade delete between these two field, when we delete the FieldId '1' from table1 will automatically delete FieldId '1'...

  • RE: Row Level Versioning

    rafa.aborges (4/7/2010)


    Thanks, guys! Great advices!

    Another question: Do you know if I might have issues to set the row level versioning on even if the compatibility level is set to 80...

  • RE: TSQL

    vivek.yadav (4/7/2010)


    Hi aplogize Paul...

    Actually i didn't find the nxt page.

    that's why i posted that...

    But you are much faster then me.. i edited in 1 sec. and you...

  • RE: Donโ€™t Change Anything

    David Fulton-420388 (4/7/2010)


    Paul White NZ (4/7/2010)


    David Fulton-420388 (4/7/2010)


    I'm in the camp that the DBA should maintain the data entered by the users. If data looks incorrect, then bring it...

  • RE: TSQL

    vk-kirov (4/7/2010)


    Paul White NZ

    Posted Today @ 4:41:28 PM

    ... 1 second to read the post and make editing ...

    Edited: Today @ 4:41:29 PM by vivek.yadav

    Amazing reaction time :w00t:

    Wow he is...

  • RE: Donโ€™t Change Anything

    george sibbald (4/7/2010)


    David Fulton-420388 (4/7/2010)


    I'm in the camp that the DBA should maintain the data entered by the users. If data looks incorrect, then bring it to the users'...

  • RE: ANSI_NULLS

    Ninja's_RGR'us (4/7/2010)


    Great question Paul.... when included with the script for the procs, it's good enough to be turn into an article...

    Thank you very much! :blush:

    I will consider that.

    @dave-3: Absolutely right!...

  • RE: Primary Key that relates to Another Table

    Paul White NZ (4/7/2010)


    You just want to list the foreign key relationships then, not just the primary keys? Do you want to include foreign keys that reference a unique...

  • RE: when error occurs in trigger

    No worries. Don't forget to check XACT_STATE in the CATCH block ๐Ÿ™‚

  • RE: TSQL

    vivek.yadav (4/7/2010)


    vk-kirov,

    You are worng...

    declare @bit bit

    set @bit='00000'

    select @bit

    will always return 0 as o/p.

    Please if you can check again.

    That's what he said. Your post claimed it returned 1. ...

  • RE: Overactive use of Temp Tables?

    Chris Howarth-536003 (4/7/2010)


    If this is the only reason that you are looking to rework the code then I would consider turning off the default trace, scripting it, amending the script...

  • RE: SSPI handshake failed with error code 0x8009030c

    ps. (4/7/2010)


    I should have :w00t:

    LOL :hehe:

  • RE: clearing SQL cache

    Dave Ballantyne (4/7/2010)


    Do you mean the procedure cache (DBCC FREEPROCCACHE) or the buffer cache(DBCC DROPCLEANBUFFERS) ?

    Im guessing the former, could potentially be parameter sniffing http://www.sqlpointers.com/2006/11/parameter-sniffing-stored-procedures.html

    I like guessing games ๐Ÿ™‚

    My...

Viewing 15 posts - 4,051 through 4,065 (of 8,416 total)