Viewing 15 posts - 4,501 through 4,515 (of 8,761 total)
I've reproduced the 64/65 split using a small set of 1,000,000 rows with much higher duplication on the key than in your set, roughly 4 times higher. The difference between...
September 20, 2015 at 9:57 am
Jason A. Long (9/20/2015)
Eirikur Eiriksson (9/20/2015)
Quick question Jason, can you post the source for the dbo.SplitCSVToTable8K function?😎
It's simply a renamed version of Jeff Moden's DelimitedSplit8k function. It was renamed to...
September 20, 2015 at 5:51 am
Jason A. Long (9/19/2015)
IF...
September 20, 2015 at 1:51 am
vijayu (9/20/2015)
I tried so hard to recreate the error 833, through simulation using different suggested method. But was not successful. Can I manually add it in the error log of...
September 20, 2015 at 1:45 am
My suspicion is that this has more to do with the selectivity, that is the number of duplicate key values in the nonclustered index.
😎
What is the output of this query?
SELECT
...
September 20, 2015 at 1:31 am
shamshad.ali (9/18/2015)
September 19, 2015 at 10:52 am
ANn -425914 (9/18/2015)
Is there a query to get CPU load history for the past 6 months or so for a SQL server?Thanks,
No, the stats are accumulative, you will have...
September 19, 2015 at 9:22 am
vincenzo.capelli (9/19/2015)
I have this task, I have to copy from one database into a remote all record which contain a specific value into a specific column. (the remote Db destination...
September 19, 2015 at 9:10 am
Jeff Moden (9/19/2015)
Eirikur Eiriksson (9/17/2015)
September 19, 2015 at 8:22 am
kevitra (9/18/2015)
select * from ourtable where contains(bigcolumn, '\\AReallyLongStringofTextHere') works fine unless there is a space in the...
September 19, 2015 at 4:47 am
stanlyn (9/18/2015)
Why are the user databases that were created in the MSSQLSERVER default instance showing up in the newly created ALPHAONE instance? I'm successfully logging into the alphaone database...
September 19, 2015 at 2:50 am
WayneS (9/18/2015)
Sean Lange (9/17/2015)
September 19, 2015 at 2:24 am
BSavoie (9/18/2015)
September 19, 2015 at 2:05 am
Quick suggestion
😎
USE tempdb;
GO
SET NOCOUNT ON
IF OBJECT_ID(N'tempdb..#temp') IS NOT NULL DROP TABLE #temp;
create table #temp (Cabstamp varchar(10), account varchar(10),document varchar(15), origin varchar(2), debit numeric(10,2), credit numeric(10,2), datalc datetime)
insert into #temp (Cabstamp,account,Document,...
September 18, 2015 at 6:01 am
tomisoft (9/18/2015)
I have a view which I'm trying to optimize.
Here's original one:
ALTER VIEW [dbo].[V_Smeny_D]
AS
SELECT s.ARBPLNR, s.DATUM, master.dbo.spt_values.number AS smena, DATEADD(hh, CASE number WHEN 1 THEN 0 WHEN 2 THEN 6...
September 18, 2015 at 5:44 am
Viewing 15 posts - 4,501 through 4,515 (of 8,761 total)