Viewing 15 posts - 4,996 through 5,010 (of 7,429 total)
No, not without a reinstall.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
August 28, 2002 at 7:27 pm
If you have an index on the EmployeeID it may have had the highest density of unique values making it a stronger candidate for index use, use sp_statistics to look...
August 28, 2002 at 5:23 pm
Be carefull but the way I do things like this where a specific condition can be met is like so.
sp_MSForEachTable '
if charindex(''mds'',''?'') != 0
begin
select ''?'' as verifyworksfirst
--drop table ? --uncomment...
August 28, 2002 at 5:16 pm
IS it coming thru as NULL or '' (blank), if later try adding AND F3 != ''. I also believe this was asked before in the groups, you might want...
August 28, 2002 at 5:08 pm
The biggest areas of slowdown are with indexes. If you can script out your non-clustered indexes unless your primary key is one of them, drop them and recreate when done....
August 28, 2002 at 5:03 pm
These are the sort orders for code page 850
quote:
40 bin_cp850 Binary order41 dictionary_850 Dictionary order, case-sensitive
42 nocase_850 Dictionary order, case-insensitive...
August 28, 2002 at 4:58 pm
I have not seen this and no where has anyone else came across. If the error is repeatable and the customer knows the steps the best thing to do is...
August 28, 2002 at 4:49 pm
If large I will take a look if you want to email to me.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
August 28, 2002 at 4:36 pm
How are you stopping the queue. Are you destroying the queue? I believe you have to xp_trace_deletequeuedefinition to get rid of the queue and thus release the queue handle.
As for...
August 28, 2002 at 3:31 pm
Yopu should also get these
Network Connection Type
Network Connection Speed
Domain/ADS/StandAlone
Domain/ADS Name
NT Hard Drive configuration and capacity
SQL file layouts
ANd it is good to get a base line of SQL statistics. Database/log growth,...
August 28, 2002 at 3:22 pm
If you do via DBCC will work in SQL 2000 but you may have to run BACKUP LOG dbName WITH TRUNCATE_ONLY. If SQL 7 you will need the script Steve...
August 28, 2002 at 3:11 pm
Take a look here and see if does not work http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q240853&
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
August 28, 2002 at 2:57 pm
Try dropping the job and recreating, may be a permissions issue. DO you have any code checking at the end the process was successfully in the DTS or job itself....
August 28, 2002 at 2:50 pm
DO you know where the suid reference is coming from? Is there a table or view referenced on test that is not that way in prod? If not try watching...
August 28, 2002 at 2:48 pm
Check out http://support.microsoft.com/default.aspx?scid=kb;en-us;Q310468 for the reason and the solution.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
August 28, 2002 at 2:43 pm
Viewing 15 posts - 4,996 through 5,010 (of 7,429 total)