Viewing 15 posts - 61 through 75 (of 91 total)
The solution for this seems to like the following:
DECLARE
@DBName VARCHAR(100),
@sql NVARCHAR(4000),
SELECT @sql...
July 3, 2008 at 8:46 am
I am trying to execute the following code but it does not seem to be setting context to the database using the execute (@SQL). It seems to stay in...
July 3, 2008 at 6:40 am
I was actually using a while loop but am not able to dynamically set the USE clause. How are you doing that. I need to set context to...
July 2, 2008 at 2:32 pm
Michael, that works perfect!
Easy solution. Thank you very much.
-David
June 27, 2008 at 1:50 pm
This is perfect. It works! Thank you very much.
June 13, 2008 at 11:35 am
You can not use a "USE " statement within a stored procedure. I am not sure what you are suggesting here. Could you please clarify?
Thank you
-David
June 13, 2008 at 11:00 am
Gail, thank you for the reply. This has led me to the following link which explains this issue:
https://www.labkey.org/issues/home/Developer/issues/details.view?issueId=2690
-David
June 9, 2008 at 1:37 pm
Excellent! Thank you guys!!!
-David
June 5, 2008 at 7:00 am
>>UPDATE STATISTICS tableName WITH FULL SCAN;
FULL SCAN should be one word like:
UPDATE STATISTICS tableName WITH FULLSCAN;
June 4, 2008 at 3:00 pm
Thank you all. This helps a great deal. Being that we do not have extra servers, I plan to do a side by side migration.
David
January 11, 2008 at 9:24 am
Okay, if I understand correctly, by upgrading my 7.0 database to 2005 it would have as compatibility level of 70, correct. At what point if any should I set...
January 11, 2008 at 8:58 am
Jeff, that fixed it. I thank you and all who responded for your patients and expertise in helping me solve this issue. Have a great day!
🙂
David
January 8, 2008 at 7:15 am
Thank you Jeff, I will pursue this and let you know how it turns out.
David
January 7, 2008 at 8:49 am
Viewing 15 posts - 61 through 75 (of 91 total)