Viewing 15 posts - 3,451 through 3,465 (of 8,753 total)
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
torfi (7/13/2016)
Takk, takk Eirikur. This was a great relief. I've been struggling with this problem nearly a week :w00t:
Ekkert mal
😎
You are welcome
July 13, 2016 at 11:13 am
Phil Parkin (7/13/2016)
Eirikur, is your test database really called 'TEEST'? 🙂
Yees
😎
July 13, 2016 at 8:37 am
Quick suggestion
😎
USE TEEST;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.Test') IS NOT NULL DROP TABLE dbo.Test;
CREATE TABLE [dbo].[Test](
[PK] [int] IDENTITY(1,1) NOT NULL,
[COLUMN1] [nvarchar](50) NOT NULL,
[COLUMN2] [nchar](10) NULL,
[COLUMN3] [nchar](10) NULL,
[COLUMN4] [nchar](10) NULL,
CONSTRAINT [PK_Test] PRIMARY...
July 13, 2016 at 6:11 am
torfi (7/13/2016)
CREATE FULLTEXT INDEX ON MalBokunSkyrsla
( Skjalid TYPE COLUMN Filextension Language 1039) KEY...
July 13, 2016 at 4:56 am
Viewing 15 posts - 3,451 through 3,465 (of 8,753 total)