Viewing 15 posts - 3,061 through 3,075 (of 8,761 total)
Looks fine to me, normally I script transferable logins from the source and after attachment then run the scripts on the destination.
😎
Quick question out of curiosity, why SQL Server 2014...
October 16, 2016 at 5:47 am
ScottPletcher (10/14/2016)
Here's a simple, brute-force -- but still no looping -- method, if you prefer that.
Not very efficient with 7 x ( source scan -> Filter -> Compute Scalar ->...
October 15, 2016 at 6:15 am
rajemessage 14195 (10/15/2016)
now u have written N which is also good , but i am trying...
October 15, 2016 at 5:20 am
karthiknfr_1991 (10/14/2016)
October 15, 2016 at 2:45 am
hegdesuchi (10/14/2016)
I have to update target table and I am good with below logic.
MERGE testdb.dbo.targettable r
using dbo.sourcetable s
on s.id=r.id
...
October 15, 2016 at 2:36 am
Quick guess, the GUI has SET ANSI_WARNINGS OFF while SSMS has SET ANSI_WARNINGS ON
😎
October 14, 2016 at 3:23 am
mitzyturbo (10/13/2016)
I'm wondering if this might be combination of using the <= operator in the inner join along with using a temp table which might be throwing the...
October 13, 2016 at 4:00 am
Can you post the actual execution plan for the query?
😎
October 13, 2016 at 3:15 am
Further on Jeff's fine reply, here is an example of "Generic" table auditing with few extras for education and entertainment.
😎
USE TEEST;
GO
SET NOCOUNT ON;
/*
--------------------------------------------------------------------------------------------------------------------------
Name: ...
October 13, 2016 at 2:18 am
How large is the dbo.sysjobhistory table in msdb? Seen similar on the same version/patch level when the table grows huge.
😎
October 12, 2016 at 9:37 am
This looks entirely wrong to me, two instances of a parameter object with the same name in the same scope, using parameters in non-parameterized code, no command is executed. My...
October 12, 2016 at 9:29 am
BLOB_EATER (10/12/2016)
Eirikur Eiriksson (10/12/2016)
BLOB_EATER (10/12/2016)
October 12, 2016 at 9:19 am
BLOB_EATER (10/12/2016)
October 12, 2016 at 3:17 am
Quick question, what is the full output of SELECT @@VERSION
😎
October 11, 2016 at 11:56 pm
Not clear what the problem is here, can you elaborate further?
😎
October 11, 2016 at 7:39 pm
Viewing 15 posts - 3,061 through 3,075 (of 8,761 total)