Viewing 15 posts - 241 through 255 (of 616 total)
TheSQLGuru (4/23/2013)
Abu Dina (4/22/2013)
GilaMonster (4/22/2013)
Why are you joining on a hash of several columns in the first place?
Record linkage.
How else would you do this if you want looks for duplicates...
April 23, 2013 at 5:18 am
GilaMonster (4/22/2013)
Why are you joining on a hash of several columns in the first place?
Record linkage.
How else would you do this if you want looks for duplicates where
forename, surname,...
April 22, 2013 at 11:57 am
Lowell (4/22/2013)
is that a default varbinary size that someone/some application imposed? can you...
April 22, 2013 at 10:52 am
Salam, keefak?
You need to change your database collation. I did this on a test database and changed collation to Arabic_100_CI_AS but you may want to choose another collation depending on...
April 22, 2013 at 5:55 am
Lynn Pettis (4/18/2013)
Ananth@Sql (4/18/2013)
Your Explanation And presentation Makes Me Clear Of This Question.
And for a clarification tell Me...
April 18, 2013 at 7:26 am
It came down to the number of pages used by the index (fewer pages = less IO)
The top row is the clustsred index, the bottom row is the non clustered...
April 18, 2013 at 5:53 am
To illustrate this I did this simple test where I did a count(*) on a table (34 million records) with just a clustsred index (picture 1), I then created a...
April 18, 2013 at 5:05 am
Recently I've been doing lots of work on large data sets, wide tables (20+ columns) with mixture of Unicode and non-Unicode data types and IO becomes a real issue when...
April 18, 2013 at 4:21 am
Is this what you're after?!
April 16, 2013 at 10:41 am
Your computed column is calling a CLR implementation of the DoubleMetaphone phonetic algorithm. This isn't a SQL error as such.
What's the word(s) it's failing on?
April 16, 2013 at 10:20 am
Long shot but if I've understood this correctly, you don't want error in your tasks to bubble up to the sequence container?
If that's the case then why not add an...
April 16, 2013 at 8:06 am
Try setting MAXDOP to 1 on your test server instance and see if that changes things.
Is restrciting SQL Server to 1 core really going to help performance?!
April 9, 2013 at 9:41 am
Long shot but what's the value for Max Degree of Parallelism set to? if it's still set to the default of 0 I would go with the MS recommendation of...
April 9, 2013 at 9:28 am
Maybe something like this? (used Jeff Moden's string splitter code below)
CREATE TABLE dbo.SSCHelp (RecordID INT, Column1 VARCHAR(50), Column2 VARCHAR(50), Column3 VARCHAR(50), Column4 VARCHAR(50), Column5 VARCHAR(50), Column6 VARCHAR(50))
;WITH SSC_CTE (RecordID,...
April 9, 2013 at 5:45 am
Apologies if the following is no good for you but have you tried using Adam Machanic's sp_WhoIsActive? http://sqlblog.com/blogs/adam_machanic/archive/2012/03/22/released-who-is-active-v11-11.aspx
If you're able to trigger the action that runs some of the slow...
April 9, 2013 at 5:12 am
Viewing 15 posts - 241 through 255 (of 616 total)