Viewing 15 posts - 121 through 135 (of 231 total)
[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,...
March 12, 2010 at 3:48 am
Whether to use replication in development enviornment or not?
March 10, 2010 at 6:42 am
nice article can you also give us the solutions to make it resistent
March 10, 2010 at 3:13 am
No. There are no security setttings in the package.
January 7, 2010 at 7:21 am
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....
December 28, 2009 at 2:38 am
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...
December 24, 2009 at 4:01 am
any suggestions how can i reduce it.
December 24, 2009 at 1:11 am
We wish you and all a Merry Christmas 2009..:-)
December 24, 2009 at 12:48 am
You can refer to BOL / MSDN for rules/ in how you can use the order by clause.
December 23, 2009 at 8:02 am
I assume that you have different job for Transaction log backup, if so then you can set the Notifications / Alerts on Job failed.
December 23, 2009 at 4:53 am
Nope I dn't have any trigger's on the tabl. The table structure is simple.
1. Primary Key
2. 7-8 Foreign Keys
December 23, 2009 at 4:51 am
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
December 23, 2009 at 2:34 am
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....
December 23, 2009 at 2:04 am
Viewing 15 posts - 121 through 135 (of 231 total)