Viewing 15 posts - 151 through 165 (of 210 total)
Thanks for the explanation and for all the detailed and brilliant knowledge/analysis.
March 9, 2014 at 11:28 pm
Disclaimer : Please excuse me for the delayed attempt for these questions
I have attempted "table space usage" questions 1,2 and 3 in sequence, but the answer for question 3 is...
March 7, 2014 at 7:00 am
Koen Verbeeck (3/7/2014)
Carlo Romagnano (3/7/2014)
Koen Verbeeck (3/7/2014)
ps: no actual connections to a certain Grant who is...
March 7, 2014 at 5:15 am
Truly, I thought of using temp table but I need everything in a single query.
thanks for the advise
February 27, 2014 at 10:48 pm
I would like to gain performance also 🙁
Thanks for the reply
February 27, 2014 at 6:29 am
select col_1 from table_1
inner join table_4
where table_4.id not in(select parent_id from table_4)
union
select col_1 from table_2
inner join table_4
where table_4.id not in(select parent_id from table_4)
union
select col_1 from table_3
inner join table_4
where table_4.id not...
February 27, 2014 at 6:08 am
Thank you all for your responses. As of Now, I have given scripts for rebuilding indexes. Yet to implement this.
February 25, 2014 at 11:48 pm
There is great learning every day through QOD. Thanks for the question
February 20, 2014 at 10:52 pm
Jeff,
I am sorry if I have confused you.
I still stand on the same point that there are set of update statements in a stored procedure.Due to these updates, CPU is...
February 12, 2014 at 8:25 am
hi grant,
I tried with the below query using the reference
http://msdn.microsoft.com/en-us/library/ms189472.aspx
SELECT qs.plan_handle, pvt.sql_handle,pvt.dbid,
(SELECT TOP 1 SUBSTRING(s2.text,statement_start_offset / 2+1 ,
( (CASE...
February 12, 2014 at 8:04 am
jeff,
I have re written the query by joining the de norm table in from clause, but the no of
reads and cpu are high with the new query. Old query is...
February 12, 2014 at 5:47 am
James,
We are getting nulls for object_name and database_name
Can you please advise on this
February 12, 2014 at 5:44 am
Viewing 15 posts - 151 through 165 (of 210 total)