Viewing 15 posts - 31 through 45 (of 69 total)
Well yes looping over each id and creating xml for them will be the same thing.
How about you have 3-4 select statements and which generates 3-4 xmls like this :-
...
October 13, 2008 at 4:33 pm
This is a indirect cursor. For every row which needs to be updated you are executing the subqueries to find the XML.
Instead Join your temp table with respective tables and...
October 10, 2008 at 3:11 pm
Sql server on its own balances load by assigning threads to processor with least runnable threads.
Unless you have some processor affinity set on your server.
October 10, 2008 at 3:01 pm
This happened to me when i installed some Stand alone visual studio for C# scripting.
October 10, 2008 at 2:46 pm
Alright, i have never worked with Cubes in 2000 Analysis services but have worked with 2005.
My plan of action would be :-
Check the data in the tables, there should be...
October 10, 2008 at 2:39 pm
yes create a linked server.
October 10, 2008 at 2:34 pm
By creating memory pressure, i meant that the stack dump mentions the memory used at the time of dump, so by runnign extraneous queries of big-joins etc .. you can...
October 10, 2008 at 2:31 pm
I am writing generic script :-
select (case
when not ft.col1 is null then 2
...
October 10, 2008 at 2:12 pm
As far as i know, you have to take full backup of Master database and cannot do filegroup backup for it.
If you have full backup of master database then you...
October 9, 2008 at 6:22 pm
Well I would presume that one has to remove the mirror, restore the database and re-establish the mirror.
I have never done it before.
Let us know how you do it...
October 9, 2008 at 6:16 pm
1. Run Sql profiler and look out for high reads.
2. Execute Sp_who2 active and look for highest IO value with lastBatchtime timestamp old enough to suggest that it was running...
October 9, 2008 at 4:23 pm
My theory is that the Sql server was reeling under memory pressure at the time when this openquery statement was executed. The query fetched data and didnt have any memory...
October 9, 2008 at 4:19 pm
Sounds reasonable and should work. Never tried it though :). Try on dev server first.
October 9, 2008 at 3:52 pm
Well the network card thingi was good to know.
Now you have 2 problems
1. Lotsa key locks
2. High Disk Reads
If your processes are acquiring locks and keeping them for long...
October 9, 2008 at 3:20 pm
My thoughts and plan of action:-
1. First lets not call it Deadlock.
2. As GilaMonster said run the trace flag.
3. Run your business object report and at the same time run...
October 9, 2008 at 1:20 pm
Viewing 15 posts - 31 through 45 (of 69 total)