Viewing 15 posts - 5,341 through 5,355 (of 19,564 total)
And if you remove the top 8?
January 4, 2013 at 12:17 am
tbmabry (1/3/2013)
January 4, 2013 at 12:01 am
Two quick methods include replication and logshipping.
January 3, 2013 at 11:54 pm
And here is the MS Reference (note the careful wording of One Null Value per Column is wrong if you run the test code I provided in the previous link)
http://msdn.microsoft.com/en-us/library/ms191166(v=sql.105).aspx
There...
January 3, 2013 at 11:47 pm
dineshbabus (1/3/2013)
oh.. unique constraint can allow more than one null value.. I don't think so.. Please give me some xample...
Here is the example
January 3, 2013 at 11:41 pm
The script referred to as option #1 is the first script in Dwain's first response on this thread.
January 3, 2013 at 10:34 pm
How many connections? Do you have a high volume of transactions or jobs running currently?
January 3, 2013 at 10:09 pm
Is CmdExec agent job type an option?
January 3, 2013 at 10:03 pm
dwain.c (1/3/2013)
SQLRNNR (1/3/2013)
dwain.c (1/3/2013)
tbmabry (1/3/2013)
January 3, 2013 at 9:55 pm
dwain.c (1/3/2013)
tbmabry (1/3/2013)
January 3, 2013 at 9:41 pm
Try this
WITH presel AS (
SELECT s.FirstName, s.LastName, c.CustomerNo, h.OppNo, ' ' + n.Note AS Note
FROM SalesLink_SalesRep s
INNER JOIN SalesLink_Prospect_SalesRepCustomerXrf c
ON c.SalesRepId = s.SalesRepId
INNER JOIN Opportunity_Header h
ON c.CustomerNo = h.CustomerNo
INNER JOIN...
January 3, 2013 at 9:38 pm
Viewing 15 posts - 5,341 through 5,355 (of 19,564 total)