Forum Replies Created

Viewing 15 posts - 121 through 135 (of 232 total)

  • RE: Find Idential KeyID

    yeap its an association table between two tables.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: JOIN issue

    [font="Courier New"]You can do it by two ways ..[/font]

    [font="Courier New"]1. using "LEFT JOIN"[/font]

    [font="Courier New"]SELECTT1.*, T2.*

    FROMT1

    LEFTJOIN T2 ON T1.keycol = T2.keycol

    WHERET2.keycol IS NULL[/font]

    [font="Courier New"]2. using "EXCEPT"[/font]

    [font="Courier New"]SELECT keycol, col1, col2, col3,...

    Abhijit - http://abhijitmore.wordpress.com

  • RE: using replication in development environment?

    Whether to use replication in development enviornment or not?

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Is Your Database Application DeadLock and Timeout Resistent?

    nice article can you also give us the solutions to make it resistent

    Abhijit - http://abhijitmore.wordpress.com

  • RE: SSIS - Script task

    No. There are no security setttings in the package.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Error # 3241 while restoring the database

    As i mentioned ealier this is true we have dirrenent service packs installed on both source and destination server. I am bemused how it is working earlier with same specifications....

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Transaction deadlock error

    the reason you are getting the deadlock is sql server executes both the statments as two different batch

    it first executes the " begin tran exec sp_addtype 'Udd_dummy','int' part in...

    Abhijit - http://abhijitmore.wordpress.com

  • RE: High reads when Inserting single value

    any suggestions how can i reduce it.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Merry Christmas 2009

    We wish you and all a Merry Christmas 2009..:-)

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Order By Problem

    You can refer to BOL / MSDN for rules/ in how you can use the order by clause.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: High reads when Inserting single value

    I checked the profiler.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Report on failure of the transaction log backup

    I assume that you have different job for Transaction log backup, if so then you can set the Notifications / Alerts on Job failed.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: High reads when Inserting single value

    Nope I dn't have any trigger's on the tabl. The table structure is simple.

    1. Primary Key

    2. 7-8 Foreign Keys

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Kill Active connections

    There is another option that you can use to kill all active connection the database and make database read only

    ALTER DATABASE <mydb> SET READ_ONLY WITH ROLLBACK IMMEDIATE

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Database stuck in single user mode

    I was also facing the same issues even I tried all the solutions mentioned here & some other solution except stopping or pausing the server.

    I used another trick for it.

    1....

    Abhijit - http://abhijitmore.wordpress.com

Viewing 15 posts - 121 through 135 (of 232 total)