Viewing 15 posts - 151 through 165 (of 298 total)
You could try changing the recovery model (if you operational policy allows it).
If you do change the model then be sure to backup the db (after you set back to...
December 7, 2009 at 1:38 pm
When you say policy.... Do you mean permissions?
December 3, 2009 at 6:48 am
Have you traced to see what options are in effect (Ansi Null Default On, Ansi Nulls On, Ansi Padding On, Ansi Warnings On etc) at the point the SP is...
November 30, 2009 at 4:38 am
Joe
Thanks for your reply...
Indexes and Stats are updated on these table every night.
JL
November 27, 2009 at 5:08 am
Is this SQL 2005 on Windows 2003?
Have you check the security Setting in the "Component Services" console?
November 26, 2009 at 1:45 pm
Im guessing the WMI service is running?
Also check that you have IIS installed.
November 12, 2009 at 8:32 am
It depends what process it is.. Can you find out? Maybe using sp_who2?
For example I have a LogReader process that has used 6 million ms of CPU.
October 19, 2009 at 9:41 am
Have you also tried to apply the latest SQL service pack?
October 19, 2009 at 8:58 am
Try the following
- Open a command prompt
- goto \Program Files\Microsoft SQL Server\90\DTS\Binn- Type in regsvr32 dts.dll
Failing that you may need to reinstalled the Management Tools.
Rgds
JL
October 19, 2009 at 8:55 am
Are you able to run a memcheck on this server? Could be a memory issue?
Also who many CPU's do you have on this SQL server? What is your MAXDOP set...
October 16, 2009 at 4:59 am
Try using "-C" (uppercase) and defining your database/Column collation.
October 15, 2009 at 9:14 am
Firstly, have you run CHECKDB on the data base...
ALTER DATABASE [DBNAME] SET EMERGENCY;
GO
ALTER DATABASE [DBNAME] SET SINGLE_USER;
GO
DBCC CHECKDB ([DBNAME], REPAIR_ALLOW_DATA_LOSS) WITH NO_INFOMSGS;
GO
Then check the status
SELECT state_desc FROM...
October 9, 2009 at 5:18 am
Thanks for the reply
That is my 1st plan to try and resolve this.. But what im not understanding when I simulate a failure in my Dev AND QA env it...
October 8, 2009 at 3:08 am
As in the previous post you can script the job... I pref to use SSIS, but that is personal pref.
You could try using "EXEC sp_change_users_login 'Auto_Fix', 'user'" to corrent any...
October 8, 2009 at 2:47 am
Have you tried using SSIS within BIDS?
There is a transfer job tasks that has worked for me. I have had it where it fails but that was due to the...
October 8, 2009 at 2:28 am
Viewing 15 posts - 151 through 165 (of 298 total)