Viewing 15 posts - 766 through 780 (of 6,486 total)
Try something like:
declare @x varchar(2000)
set @x='<Emp>
<Details>
<D N="Id" V="1235" />
<D N="Des" V="SW" />
<D N="name" V="AAA" />
<D N="name" V="BBB" />
<D N="name" V="CCC" />
<D N="name" V="DDD" />
</Details>
</Emp>'
;with XMLCTE as (select...
December 17, 2013 at 1:14 pm
You can use the MAP toolkit to detect them:
December 16, 2013 at 8:02 pm
While the order of closing is wrong, I might also point out that you aren't FETCHING the next DB inside of the loop, so you're pulling one DB, cycling through...
December 12, 2013 at 11:08 am
Jeff Moden (12/10/2013)
Robert.Sterbal (12/9/2013)
The words "Best Practice" are an industry wide problem. We need to acknowledge them as recommended processes, which deviations from should be researched, not prohibited.
+1 to that....
December 10, 2013 at 9:45 am
Perhaps it's me but the primary flaw I noticed is that this is an attempt to use a de facto individual ranking system to measure performance in a team...
December 4, 2013 at 6:48 pm
Jeff Moden (11/22/2013)
David Burrows (11/21/2013)
Jeff Moden (11/19/2013)
I used to be a great VB6 programmer
WHAT :exclamationmark: Are you a bad VB6 programmer now
And after everything you said about CLR sheesh :rolleyes:
p.s....
November 22, 2013 at 3:27 pm
I'm not involved in monitoring jobs anymore, but our ops folks use an enterprise scheduler tool called JAMS to run and monitor all SQL jobs.
http://www.jamsscheduler.com/%5B/url%5D
They seem to be fairly...
November 22, 2013 at 1:40 pm
Are you SURE nothing changed in the code?
The likely culprit looks to be here:
DECLARE cursorlpn CURSOR FOR
select AccountID from Addresses
where country = 'HR';
I'm making a giant assumption, but how...
November 17, 2013 at 7:16 pm
Eric M Russell (11/12/2013)
Tom Bakerman (11/12/2013)
Jeff Moden (11/12/2013)
From the article:
These days most testing of software is automated.
Oddly enough, I believe that's part of the problem with delivered software, today. ...
November 12, 2013 at 12:23 pm
openQuery() should also allow you to push the execution onto the remote server (which would be registered as a linked server). This does then become a rather large dynamic SQL...
November 9, 2013 at 8:03 am
Tom John-342103 (11/7/2013)
November 7, 2013 at 8:24 am
It's looking for ProductDescription nodes that have one or more features nodes as children. For those ProductDescription nodes it returns the content of the Summary element.
November 6, 2013 at 11:11 am
I kind of get what you're going for, but it kind of looks like some pieces are missing. For one thing - you would usually have a reorder/restock level...
October 31, 2013 at 7:44 am
blasto_max (10/30/2013)
Matt Miller (#4) (10/30/2013)
1. the SSIS route - use the flat file connector to make SSIS aware of the generic content. then use a...
October 30, 2013 at 6:01 pm
Two ways to do this:
1. the SSIS route - use the flat file connector to make SSIS aware of the generic content. then use a conditional split based on...
October 30, 2013 at 11:25 am
Viewing 15 posts - 766 through 780 (of 6,486 total)