Viewing 15 posts - 1,081 through 1,095 (of 2,458 total)
TheSQLGuru (1/4/2016)
2) This article fails to mention an EXCEPTIONALLY important flaw (among many others that aren't covered such as preventing...
January 4, 2016 at 7:04 am
robert-819720 (12/30/2015)
December 31, 2015 at 5:30 pm
Luis Cazares (12/30/2015)
SELECT CONVERT(date,[dates]) AS Dates
FROM DailyDates
OPTION (maxrecursion 0)
),
However, there's a major problem. You have a rCTE that counts which...
December 30, 2015 at 6:19 pm
You can use the Quirky Update method discussed here: http://www.sqlservercentral.com/articles/T-SQL/68467/%5B/url%5D
December 30, 2015 at 11:49 am
That END statement will cause an error if there is not a BEGIN statement somewhere before it within the same transaction. I'll just assume, however, that you have a BEGIN...
December 30, 2015 at 10:55 am
SQLisAwE5OmE (12/29/2015)
Thnx again Jeff for trying. I am learning.
You've come to the best place for people that are learning SQL IMHO.
December 29, 2015 at 7:46 pm
Stylez (12/29/2015)
Good Morning Guys,...is there a substitute tool that i can use so i can create my SSIS package with only my SQL Server 2012?
Depending on what you are trying...
December 29, 2015 at 12:56 pm
I'm guessing you would add this to the end of your query:
WHERE Parent1_Gender = 'F' and Parent2_Gender = 'F'
December 29, 2015 at 12:46 pm
Eirikur Eiriksson (12/28/2015)
Alan.B (12/28/2015)
Someone beat me to it but NOLOCK table hints are the #1 mistake I have seen. I would go so far as...
December 28, 2015 at 2:23 pm
The most common/easiest to fix mistakes:
Someone beat me to it but NOLOCK table hints are the #1 mistake I have seen. I would go so far as to say it's...
December 28, 2015 at 12:39 pm
The AD account is a member of an AD group that gives 'datareader' to this particular database. Would this be enough to execute the SP's that it does not have...
December 28, 2015 at 12:13 pm
Giorgio Vidali (12/17/2015)
December 17, 2015 at 11:22 am
I'm doing my first adjacency list to nested sets conversion and building out a rather complex hierarchy table for a new project (something I've been anxious to do since I...
December 16, 2015 at 8:35 pm
Eirikur Eiriksson (12/16/2015)
Alan.B (12/15/2015)
DECLARE @x XML = '<?xml version="1.0" encoding="UTF-8"?>
<StaffingOrder>
<OrderId validFrom="12/31/2015" validTo="12/31/2015">
<IdValue>JNJNJP00040440</IdValue>
<Status>Submitted</Status>
</OrderId>
<StaffingPosition>
...
December 16, 2015 at 2:16 pm
Viewing 15 posts - 1,081 through 1,095 (of 2,458 total)