Viewing 15 posts - 1 through 15 (of 28 total)
Thanks Gianluca for your reply,
Name was correct.
Here is what we did next, after all troubleshooting and sql client re-installation on application server, it still did not connect properly. the behaviour...
June 24, 2015 at 9:11 pm
Hi,
You can not see difference with few rows as it will be adjusted with same page.
Try inserting 1 million rows and then compare.
If you do not find the difference, truncate...
October 17, 2013 at 3:05 am
time out expired.. which one? connection timeout or command timeout? And yes, did you try the query from management studio as suggested by John Mitchell?
April 24, 2013 at 9:13 am
I guess Hyper Treading is enabled on your server. Microsoft recommends to set maxdop=number of physical processors when HT is enabled. However they also recommend to monitor and test it...
April 20, 2013 at 4:31 pm
please check the connection property in trace for the client application. what is isolation level set there.
what isolation level are you using when running from QA. If application uses read...
April 18, 2013 at 3:27 pm
Hi,
you can try this.
select a.Uniq_ID, a.DocCode, a.EffectiveDate,
b.Uniq_ID, b.CodeStatus, b.InsertedDate
from #temp_main as a
left join #temp_status as b on b.Uniq_ID = a.Uniq_ID
inner join (select uniq_id, min(InsertedDate) as InsertedDate from #temp_status...
April 18, 2013 at 3:10 pm
Hi Krasavita,
I could not find any method to directly restore on another server through query. Probably you can use osql command utility from inside the job to get it done....
April 18, 2013 at 2:50 pm
Yes, only else part will execute as the condition is not true. What is confusion? do you think 0=1 is correct?
April 18, 2013 at 10:44 am
select isnull((select 1 where 1=2 ),1)
April 18, 2013 at 10:35 am
becuase it is searching for a not null value. no row returned is being treated as null that sounds reasonable.
can you check the result of below query? this will answer...
April 18, 2013 at 10:32 am
hi,
I belive there is error within transaction and transaction is not committed. can you add error handling within the transaction to check if there is any.
Alternately, add test line...
April 18, 2013 at 9:39 am
I assume you mean diffferent drive instead of different path. Further I assume, the drives come from different physical disk / LUNS.
Yes it will improve even for simple recovery. The...
April 16, 2013 at 3:05 pm
Hi,
Index A is indeed in use as Gila suggested earlier.
Index B not being used for query, but it may be important if it is clustered index or Primary Key.
I...
April 8, 2013 at 5:49 am
Viewing 15 posts - 1 through 15 (of 28 total)