Viewing 15 posts - 4,921 through 4,935 (of 8,753 total)
Lynn Pettis (7/14/2015)
Cannot create a row of size 8071 which is greater than the allowable maximum row size of...
July 14, 2015 at 9:35 am
Lynn Pettis (7/14/2015)
Cannot create a row of size 8071 which is greater than the allowable maximum row size of...
July 14, 2015 at 8:45 am
Jeff Moden (7/14/2015)
July 14, 2015 at 8:06 am
MarkThornton (7/14/2015)
Thanks for the suggestion. However, I make extensive use of Redgate's SQL Server Source Control, which will only work on one instance of Management Studio at a...
July 14, 2015 at 7:26 am
Quick suggestion, run an instance of ssms for each server.
😎
July 14, 2015 at 6:58 am
giri10488 (7/13/2015)
July 14, 2015 at 12:44 am
Lynn Pettis (7/13/2015)
July 14, 2015 at 12:23 am
mw112009 (7/13/2015)
create table abc( lab_id varchar(10), lab_time datetime, lab_name varchar(100) )
INSERT INTO abc( '10001' , '2015-07-13 14:01:023' , 'K' );
INSERT INTO abc( '10001' , '2015-07-13 14:01:023' , 'K' );
INSERT INTO...
July 13, 2015 at 3:09 pm
robert.wiglesworth (7/13/2015)
select * from #temp t where t.color in ('red','blue')
and still get record number 4 because red...
July 13, 2015 at 2:45 pm
SQLRNNR (7/13/2015)
July 13, 2015 at 2:33 pm
robert.wiglesworth (7/13/2015)
create table #test
(id int
,color varchar(20)
)
insert into #test
(id, color)
values
(1, 'blue'),(2, 'red'),(3,'green'),(4,'red,green')
In this example, if I wanted to run a query to select any records...
July 13, 2015 at 2:22 pm
Mikael Eriksson SE (7/13/2015)
Doing it with a ten million leaf nodes instead of just four might deliver quite different results. :hehe:
FYI: the plan will be identical regardless of what your...
July 13, 2015 at 2:12 pm
Mikael Eriksson SE (7/13/2015)
Eirikur Eiriksson (7/13/2015)
SELECT
NAME.DATA.value('.','NVARCHAR(128)')
FROM @TXML.nodes('//name') AS NAME(DATA)
SET STATISTICS TIME,IO OFF;
SET STATISTICS IO,TIME ON;
SELECT
NAME.DATA.value('.','NVARCHAR(128)')
FROM @TXML.nodes('/STUFF_FROM_MSDB/SYSTABS/name/text()') AS NAME(DATA)
//name and /STUFF_FROM_MSDB/SYSTABS/name/text() is not...
July 13, 2015 at 2:07 pm
BG101 (7/13/2015)
July 13, 2015 at 1:46 pm
TomThomson (7/13/2015)
Eirikur Eiriksson (7/13/2015)
This is a very trivial example, the structure of the XML and the size makes it ill fit for any performance testing.😎
Yes, quite so. 😎
Doing it...
July 13, 2015 at 1:35 pm
Viewing 15 posts - 4,921 through 4,935 (of 8,753 total)