Viewing 15 posts - 376 through 390 (of 9,641 total)
GilaMonster (6/26/2015)
Jack Corbett (6/26/2015)
Why no submission this year, Gail?
Ask me over coffee sometime, somewhere.
Are you going to be there?
I don't know. Company won't pay for me...
June 29, 2015 at 7:01 am
If y'all didn't know the speakers for this year's PASS Summit has been announced, http://www.sqlpass.org/summit/2015/Sessions/Speakers.aspx. Several Threadizens on the list, myslef included for the first time. The most...
June 26, 2015 at 11:26 am
Great solution Jeff. I had to think about it a bit to understand the why, but I get it.
June 24, 2015 at 12:12 pm
Can you post the entire query?
I'd suggest you try this pattern:
WHERE NOT EXISTS(select DB2.dbo.tblFPO.WarrantyWOID from DB2.dbo.tblFPO where DIV_ID <> 5 and DIV_ID is Not null and WarrantyWOID = DB1.dbo.ITEM.item_ItemNumber)
June 24, 2015 at 12:00 pm
It depends. Just changing the inline query into a stored procedure likely won't improve performance, but having the query in an stored procedure does make tuning the query easier...
June 24, 2015 at 11:55 am
This is a duplicate post. There are answers, maybe not adequate ones, here, http://www.sqlservercentral.com/Forums/FindPost1696979.aspx. Please put new answers there so the thread stays together.
June 24, 2015 at 8:29 am
Wow, that's an interesting stored procedure.
So just to be sure I understand, is the location_load table is the load table you are referencing in your initial post?
Are there more than...
June 23, 2015 at 12:37 pm
Sean Lange (6/23/2015)
greglove (6/23/2015)
What edition do I need?...
June 23, 2015 at 11:53 am
The fields on the report are driven by the final Select query which gets its data from the @EmployeeTbl so you either need to join to that and add the...
June 23, 2015 at 11:51 am
What do you mean by "group all system 3 records"?
Are all the rows from the source table going to the same destination table? If they are why do you...
June 23, 2015 at 11:42 am
Steve Jones - SSC Editor (6/23/2015)
Grant Fritchey (6/23/2015)
Uuummmm, did you go and break the thing? Sure looks like the line snapped.
It did. Kevin Boyles and I broke it, but someone...
June 23, 2015 at 11:18 am
dunn_Stephen (6/23/2015)
------------------------------
Error at Data Flow Task [Derived Column 1 [45]]: Attempt to find the input column named "xmlMessage" failed with error code 0xC0010009. The input column specified...
June 23, 2015 at 9:42 am
When I pasted in the expression it replaced the < and > so you need to replace "& lt" and "& gt" with < and >.
June 23, 2015 at 9:17 am
Try this:
SUBSTRING(xmlMessage,FINDSTRING(xmlMessage,"<dateTime>",1) + LEN("<dateTime>"),FINDSTRING(xmlMessage,"</dateTime",1) - (FINDSTRING(xmlMessage,"<dateTime>",1) + LEN("<dateTime>")))
June 23, 2015 at 9:06 am
Steve Jones - SSC Editor (6/23/2015)
Disclosure: I work...
June 23, 2015 at 8:34 am
Viewing 15 posts - 376 through 390 (of 9,641 total)