Viewing 15 posts - 8,686 through 8,700 (of 8,760 total)
Came across this, thought it might help
March 30, 2014 at 12:22 pm
dwain.c (3/27/2014)
Eirikur Eiriksson (3/25/2014)
Looks like JM's seal of approval, which doesn't come easily.
Well done indeed!
Thanks Dwain :Wow:
You also get my seal of approval. 🙂
Reference and link at...
March 30, 2014 at 11:38 am
Several ways to do this, options include using SSIS package, an OPENROWSET from destination, downgraded SQL Server import then upgrade and few more. Without more knowledge of the schema, constraints...
March 30, 2014 at 11:04 am
Jeff Moden (3/29/2014)
March 30, 2014 at 9:35 am
This might help;
USE tempdb;
GO
CREATE TABLE dbo.TBL_XML_DOC
( XML_DOC_ID int identity(1,1) primary key clustered not null
,XML_DOCUMENT xml);
GO
INSERT INTO dbo.TBL_XML_DOC(XML_DOCUMENT)
SELECT * FROM OPENROWSET(
BULK 'C:\Download\sdn.xml',
SINGLE_BLOB) AS x;
;WITH...
March 29, 2014 at 6:50 pm
Prakash Heda (3/29/2014)
March 29, 2014 at 6:10 pm
I have 2008R2, 2012 and 2014 on the same W7, all named instances, no problem 🙂
March 29, 2014 at 1:11 pm
Jeff Moden (3/29/2014)
March 29, 2014 at 11:13 am
elfresco1 (3/26/2014)
March 29, 2014 at 6:02 am
ananda.murugesan (3/29/2014)
DELETE FROM TBL_IMAGES where ENROLLTIME <= DATEADD (year,-5, GETDATE()) order by ENROLLTIME descPls. suggestion me, If any best method?
Here is a method that I have used for one off...
March 29, 2014 at 3:13 am
GilaMonster (3/28/2014)
March 28, 2014 at 3:48 pm
GilaMonster (3/28/2014)
Eirikur Eiriksson (3/28/2014)
SELECT @ProductID= ProductID FROM Product WITH (NOLOCK) WHERE SalesID= '@salesId' and Product = 'Clothes '
Apart from not being SARGable...
All the predicates in that query are SARGable. They're...
March 28, 2014 at 3:11 pm
SELECT @ProductID= ProductID FROM Product WITH (NOLOCK) WHERE SalesID= '@salesId' and Product = 'Clothes '
Apart from not being SARGable, this query puzzles me, would you ever have a SalesID value...
March 28, 2014 at 2:51 pm
Ranzz (5/26/2011)
what are benfits and disadvangates of online and offile?
CREATE NONCLUSTERED INDEX [_dta_index_dClientCode_16_437576597__K7_K3_1]...
March 28, 2014 at 1:31 pm
tlunsf (3/28/2014)
Ninja's_RGR'us (5/26/2011)
What didn't you understand in my previous post?What part of ONLINE = SOMETHING OTHER THAN OFF GOES HERE are you having troubles with?
It is comments like this that...
March 28, 2014 at 11:08 am
Viewing 15 posts - 8,686 through 8,700 (of 8,760 total)