Viewing 15 posts - 3,451 through 3,465 (of 8,761 total)
imneaz (7/18/2016)
Dear Expert ,I have a problem ...please help me out..
Conversion failed when converting the varchar value '201ex' to data type int.
Quick question, do you have any sample data to...
July 18, 2016 at 11:46 pm
farooq_inlondon (7/18/2016)
I had database with ndf files in 5 filegroups, the big tables is partitioned and data is there in these files.
I dropped the database but mdf, ndf and...
July 18, 2016 at 7:08 am
Further on John's reply, we need the table structures, the query and the actual execution plan, without the information it's only wild guesses.
😎
July 18, 2016 at 3:59 am
dhb (7/17/2016)
July 18, 2016 at 12:46 am
wendy elizabeth (7/17/2016)
I did not include all my question since I was trying to determine what was wrong with my original...
July 18, 2016 at 12:20 am
Ed Wagner (7/17/2016)
There are several approaches to the problem. Here's the one I would pick:
SELECT personid
FROM dbo.TranscriptCourse
EXCEPT
SELECT personid
FROM dbo.TranscriptCourse
WHERE EndYear = 2013;
Quick thought,...
July 17, 2016 at 11:13 pm
Mark Cowne (7/17/2016)
Interesting!
Yes indeed and often overlooked.
The difference is quite large, without the text() function, each value method results in three XML function calls, sort, joins etc., 15 operators in...
July 17, 2016 at 1:50 pm
Slight difference in the query but huge in performance by using the text() function
😎
;WITH XML_CONVERT AS
(
SELECT
XN.XN_ID
...
July 17, 2016 at 1:13 am
Quick thoughts, change the old style ANSI joins to normal joins, move any join conditions from the where clause to the joins and then check for any remaining LEFT table...
July 16, 2016 at 10:47 pm
Quick thoughts, looks like corruption in sys.sysobjvalues (object_id 60) and then some
Table error: Object ID 563604212, index ID 2, partition ID 72057664724140032, alloc unit ID 72057664734167040 (type In-row data). Page...
July 16, 2016 at 1:48 am
Quick suggestion
😎
SELECT ids.DataSet.value('(./text())[1]','INT') AS ID
FROM @IDs.nodes('/IDs/ID') AS ids(DataSet)
July 15, 2016 at 4:00 am
Phil Parkin (7/14/2016)
Ray K (7/14/2016)
Brandie Tarvin (7/14/2016)
I'm in the last few days before Go Live on a major infrastructure upgrade. I'm lucky I can spell SEQUAL. @=)
I once had a...
July 14, 2016 at 10:56 am
ThomasRushton (7/14/2016)
Brandie Tarvin (7/14/2016)
ThomasRushton (7/14/2016)
Brandie Tarvin (7/14/2016)
I'm in the last few days before Go Live on a major infrastructure upgrade. I'm lucky I can spell SEQUAL. @=)
Isn't that the time...
July 14, 2016 at 8:59 am
Viewing 15 posts - 3,451 through 3,465 (of 8,761 total)