Viewing 15 posts - 5,296 through 5,310 (of 7,429 total)
Yes to be more specific we need the error message after that. However the severity is 0 which usually is an informational message only 17 and above warrant major concern....
July 10, 2002 at 8:10 pm
More actually that it prevents all data changes.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
July 10, 2002 at 8:03 pm
There are a lot of possibilities and I don't know why I did not see the error message previously.
Check out
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q224996
"Don't roll your eyes at me. I will tape them in...
July 10, 2002 at 7:57 pm
Also post the full error message. Usually there is a number and details with the error that make finding your problem easier.
"Don't roll your eyes at me. I will tape...
July 10, 2002 at 7:48 pm
You may also need to truncate the log before doing the shrink to kill the virtual logs internal to the file.
"Don't roll your eyes at me. I will tape them...
July 10, 2002 at 7:45 pm
Check out this KB article
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q310834
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
July 10, 2002 at 7:26 pm
I am not sure that you can change during the upgrade but if you have a spare box around you can install SQL 7 to and put the DB on...
July 10, 2002 at 5:47 am
One method you can use is compartmentlize the procedure into component procedures.
Ex.
I have a database with a tables yyy
CREATE PROC ip_test1
AS
SELECT * FROM xxx --Does not exist
CREATE PROC ip_test2
AS
SELECT *...
July 10, 2002 at 5:43 am
Trace is your best option and your only true option with SELECT queries. If however there are UPDATE and INSERT and DELETE queries you can use triggers instead to generate...
July 9, 2002 at 6:23 am
Yes when dropping indexes especially in a hurry then drop the non-clustered first then the clustered. Every time a clustered index is altered all non-clustered indexes are rebuilt automatically and...
July 9, 2002 at 6:14 am
In fact you just have to set either SQLStmt:Begin or Complete to get the sql statements that are run. You can also setup traces with profiler output by using xp_trace......
July 9, 2002 at 6:09 am
What error does QA return when you run the query? Also have you set up a linked server and what parameters did you use?
"Don't roll your eyes at me. I...
July 9, 2002 at 6:02 am
In Eterprise Manager you can drill thru to management of a server and you will find a listing for SQL Server Logs. Also many major items will be posted to...
June 25, 2002 at 6:11 pm
ALthough a primary key is not absolutely needed it is best to have one as you need to ensure data entities as opposed to possible duplications. Although you may not...
June 25, 2002 at 5:52 pm
The basic problem here is that timein is not understood at this level. By replacing timein with the same calulation code it will work. Or you can change you query...
June 25, 2002 at 5:48 pm
Viewing 15 posts - 5,296 through 5,310 (of 7,429 total)