Viewing 15 posts - 7,666 through 7,680 (of 8,416 total)
Andy Hughes (6/22/2009)
June 23, 2009 at 6:48 pm
only4mithunc (6/23/2009)
K.. So you mean to tell Intel X86 means it is 32 bit, so incase of 64 how will it represent?
Just for clarity:
32-bit example:
Microsoft SQL Server 2005 - 9.00.4035.00...
June 23, 2009 at 6:32 pm
If I understand you correctly, you would like to run multiple instances of the application to introduce some element of parallelism to this task - and you are looking for...
June 23, 2009 at 6:21 pm
I tend to look at sys.dm_db_index_operation_stats, to see how many lock promotions were attempted as well as how many succeeded:
SELECTTOP (10)
OBJECT_NAME(object_id, database_id) object_nm,
index_id,
partition_number,
index_lock_promotion_attempt_count,
index_lock_promotion_count
FROMsys.dm_db_index_operational_stats
(DB_ID(), NULL, NULL, NULL)
ORDER BY
index_lock_promotion_count DESC;
see the...
June 23, 2009 at 5:58 pm
Florian Reischl (6/23/2009)
June 23, 2009 at 3:40 pm
Oh boy. So now "standard SQL" has been invoked.
Jeff's gonna absolutely love this - I just hope Carl likes pork.
June 23, 2009 at 3:39 pm
Florian Reischl (6/23/2009)
@paul-2: Probably looks better in IE or Firefox ๐
Oh - ha ha ha ๐
Actually it renders just fine in Chrome 2 - albeit somewhat faster than in Internet...
June 23, 2009 at 3:32 pm
RBarryYoung (6/23/2009)
June 23, 2009 at 3:25 pm
RBarryYoung (6/23/2009)
Nope, that's right. Run it and see. ๐
Well I did try! :ermm:
Once I have removed the line numbers and line breaks, I get this:
declare @s-2 nvarchar(999) Set @s-2='ล''~โ,ROWS~โฌลล~}and~|le~{char(1~\e...
June 23, 2009 at 3:14 pm
Apollo74x (6/23/2009)
So I need to resolve any issues with the I/O system and see if the % processing time goes down??
I would start with the basics - you need to...
June 23, 2009 at 3:05 pm
Jeff,
Using my preferred measure of total_worker_time as reported by sys.dm_exec_query_stats:
Triangular join: 10,218,749ยตs (~10.2 sec)
Your method:
Receipts running total: 41,015ยตs (~0.04 sec)
Shipments running total: 240,234ยตs (~0.24 sec)
Final SELECT: 4,425,781ยตs (~4.43 sec)
Total...
June 23, 2009 at 4:19 am
Ian Scarlett (6/23/2009)
take a look at a truly outstanding blog entry by Joe Chang:
You're right, it is an interesting blog, as much for the discussion that follows, which shows the...
June 23, 2009 at 3:52 am
Yes, Ian is absolutely right - the information in the article he posted still applies.
Nevertheless, sysprocesses is deprecated - so you could (and probably should) take a bit of time...
June 23, 2009 at 3:02 am
RBarryYoung (6/23/2009)
Now, if you want to see some truly hideous code, try this. ๐
Actually, that looks pretty awesome!
I'd like to try it for myself - but has the posted...
June 23, 2009 at 1:43 am
Why not try: http://www.dbasupport.com/
/ha!
June 22, 2009 at 9:25 pm
Viewing 15 posts - 7,666 through 7,680 (of 8,416 total)