Viewing 15 posts - 1 through 15 (of 53 total)
+1 to all the comments that pointed out the answer is incorrect. Good question to examine the defered name resolution idea - but need to verify code? Made it ambiguous...
October 15, 2014 at 5:02 pm
Can you explain what the intention of this piece of code is?
IF NOT RStimes.EOF THEN
storeTime = RStimes("city_time")
END IF
It would seem that the predicate is failing here and your store_time...
November 26, 2012 at 8:52 pm
Is there more than one result that satisfies your where clause?
November 26, 2012 at 8:49 pm
Yes, great read and advice as always Gail. I would still be tempted to move the original mdf file away and create the dummy database with the same name, and...
November 21, 2012 at 12:44 am
repoint that path to your actual mdf file
November 20, 2012 at 11:36 pm
Okay - I'm assuming that you don't have a recent backup here - because that would be the best option. Short of that you need to do a bit of...
November 20, 2012 at 11:29 pm
Apologies if I'm belabouring this bus does the file MEDICALSTORE_log.ldf exist in that path?
November 20, 2012 at 11:22 pm
Does the path:
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA
exist on your machine?
November 20, 2012 at 11:15 pm
CREATE DATABASE <database name>
ON (FILENAME = 'full path to the mdf')
FOR ATTACH_REBUILD_LOG ;
GO
November 20, 2012 at 11:05 pm
That's pretty cleaned up all right! Does it run on 2012?
August 5, 2012 at 10:01 pm
I'll add my voice to the clamour - as the question is worded tempdb is a correct answer to the question. Did not realsie that fact about the master database,...
May 29, 2012 at 3:23 am
Thanks Gail, great article and explanations. Clear and concise. Appreciate you clearing up that question for me.
May 8, 2012 at 8:00 pm
Thank you Gail for the excellent article.
I do have one question: in the final demo where you looked at the log usage for an index rebuild, you mentioned "log reservation...
May 7, 2012 at 4:36 pm
Something like:
SELECT Customer_Number FROM Customer_Offer
WHERE Product_Offer = '1'
and Customer_Number NOT IN
(
SELECT Customer_Number FROM Customer_Offer
WHERE Product_Offer = '2' OR Product_Offer = '3'
)
February 8, 2012 at 6:01 pm
Can I use that sproc for an already existing trace?
December 29, 2011 at 5:32 pm
Viewing 15 posts - 1 through 15 (of 53 total)