Viewing 15 posts - 3,916 through 3,930 (of 8,761 total)
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
GilaMonster (1/20/2016)
My question would be 'why'?
+1
😎
Didn't want to open that Pandora's box
January 20, 2016 at 3:10 pm
Eric M Russell (1/20/2016)
January 20, 2016 at 2:57 pm
GilaMonster (1/20/2016)
Table definition, index definitions and execution plan please.But first, is the query really a problem?
Sorry Gail, didn't see your post, makes mine look kind of daft:-P
😎
January 20, 2016 at 2:50 pm
bebe022476 (1/20/2016)
select document.DocumentID as 'document.document.id',
document.DocFolderID as 'document.document.folderID',
document.FileName as 'document.document.description',
document.FileSize as 'document.document.fileSize',
document.ModifiedDate as 'document.document.modifiedDate',
document.TableName as 'document.document.tableName',
document.EntityCode as 'document.document.entityCode'
from...
January 20, 2016 at 2:49 pm
below86 (1/20/2016)
January 20, 2016 at 2:48 pm
abdellahmoh2016 (1/20/2016)
I'm new in T-SQL so i need your help
My problem is : After deleting a row , is there a way to retrieve the ID of that row...
January 20, 2016 at 2:31 pm
Jacob Wilkins (1/20/2016)
January 20, 2016 at 2:27 pm
Viewing 15 posts - 3,916 through 3,930 (of 8,761 total)