Viewing 15 posts - 3,901 through 3,915 (of 8,753 total)
I'll have a look, can you get couple of data samples to work with, makes things easier as otherwise I would have to start guessing.
😎
I've done systems that to high...
January 22, 2016 at 7:29 am
Brandie Tarvin (1/22/2016)
Eirikur Eiriksson (1/22/2016)
😎
CREATE TABLE #dbsize
(
Dbname SYSNAME ...
January 22, 2016 at 7:24 am
Quick suggestion, change the #dbsize create script
😎
CREATE TABLE #dbsize
(
Dbname SYSNAME ...
January 22, 2016 at 5:20 am
er.mayankshukla (1/22/2016)
In one of the application, we have to restrict the developers from creating a table with unicode columns.
I was thinking if I can use Policy based management for...
January 22, 2016 at 1:29 am
Eric M Russell (1/21/2016)
Eirikur Eiriksson (1/20/2016)
...
Quite impressive, 28 operators in the execution plan, parallel execution, four full table scans and I'm now putting out the fire ignited by the CPU...
January 22, 2016 at 1:26 am
The quick suggestion towards a solution posted earlier was just that, less than two minutes of coding to demonstrate a method for identifying groups in sequences. Now with further 5...
January 22, 2016 at 1:22 am
Quick suggestion, a different and more efficient way of doing this
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @SAMPLE_SIZE INT = 1000;
;WITH T(N) AS (SELECT N FROM ( VALUES (0),(0),(0),(0),(0),(0),(0),(0),(0),(0)) AS...
January 21, 2016 at 11:01 pm
Quick thoughts, do you have an XSD for the XML? If that exists then it's normally the best starting point for modelling the database schema.
😎
Bulk loading the XML into...
January 21, 2016 at 10:27 pm
Greg Edwards-268690 (1/21/2016)
Steve Jones - SSC Editor (1/21/2016)
Greg Edwards-268690 (1/21/2016)
But refuses to start...
January 21, 2016 at 3:19 pm
Sergiy (1/21/2016)
MMartin1 (1/21/2016)
January 21, 2016 at 1:56 pm
TJT (1/21/2016)
Just identify them
Here is how
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @TEST_STRING NVARCHAR(4000) = N'ABCDEFG?Ô?1234567Ò???HIJKLM]? ?NOP??60987654321';
;WITH T(N) AS (SELECT N FROM ( VALUES (0),(0),(0),(0),(0),(0),(0),(0),(0),(0)) AS X(N))
, NUMS(N) AS (SELECT TOP(LEN(@TEST_STRING)) ROW_NUMBER()...
January 21, 2016 at 11:36 am
TJT (1/21/2016)
I want to find any non latin chartacters: cyriliic, chineese, Japanese, ect
Identify them or simply remove them?
😎
January 21, 2016 at 8:49 am
Roust_m (1/20/2016)
I am planning to un-partition and decompress some large tables to be able to use standard edition of SQL Server.
Given that not clustered indexes get rebuilt when a clustered...
January 20, 2016 at 11:19 pm
chuck.forbes (1/20/2016)
January 20, 2016 at 3:19 pm
Viewing 15 posts - 3,901 through 3,915 (of 8,753 total)