Viewing 15 posts - 901 through 915 (of 1,170 total)
Hi,
You can query sys.dm_exec_query_stats. There is much info about *_elapsed_time, *_logical_reads, *_logical_writes and etc.
Regards,
IgorMi
May 21, 2013 at 1:48 am
IgorMi (5/20/2013)
More files is good when they are on different drives.
Maybe
And will it bring performance gain when on one drive?
No.
Having one physical drive D:\ on your notebook and having four...
May 20, 2013 at 2:01 pm
GilaMonster (5/20/2013)
IgorMi (5/20/2013)
I'm dropping the indexes and the data is only 90GB. I added three more files and...
May 20, 2013 at 9:58 am
This is so straightforward.
Maybe your Field2 has some invisible characters. Could you post the error message?
Regards
IgorMi
May 19, 2013 at 2:31 am
There is always solution for a particular case. But what about cases without any commas?
Here is one proposal:
declare @amt varchar(20)
set @amt = '10,000,000.00'
--desired is 10-000000.00
set @amt = substring(replace(@amt,',','-'),1,charindex('-',replace(@amt,',','-'),1))+substring(replace(@amt,',',''),charindex('-',replace(@amt,',','-'),1),len(replace(@amt,',',''))-(charindex(replace(@amt,',','-'),'-',1)))
print @amt
IgorMi
May 18, 2013 at 7:28 am
tacy.highland (5/17/2013)
I'm getting an error:
Conversion failed when converting the varchar value 'UPDATE #Summary
SET [07:30] = 0
, [07:45] = 0
WHERE route = ['...
May 18, 2013 at 7:03 am
crussell-931424 (5/16/2013)
May 16, 2013 at 8:10 am
mtassin (5/16/2013)
Raghavendra Mudugal (5/16/2013)
COLUMNSTORE index is very new to me and didn't had a clue on what it does, so have to take...
May 16, 2013 at 7:41 am
Hugo Kornelis (5/16/2013)
Raghavendra Mudugal (5/16/2013)
May 16, 2013 at 2:40 am
Grant Fritchey (5/14/2013)
May 14, 2013 at 5:17 am
Hi
Indexed views can improve performance significantly if you have queries that combine large volumes of data with aggregates. It should not be created against tables where lot of modifications or...
May 10, 2013 at 1:41 am
Hi,
What does its execution plan say? Are there any missing indexes? How big are the tables? Check the statistics on them.
You can replace the IN with EXISTS and NOT EXISTS.
Regards
IgorMi
May 9, 2013 at 1:20 am
Viewing 15 posts - 901 through 915 (of 1,170 total)