Viewing 15 posts - 76 through 90 (of 182 total)
If there is no documentation and the developer/admin has rolled off? All you can do is document it as best you can as you go and insure to document when...
November 1, 2005 at 3:17 pm
If you are using MS SQL Server 2000 you can use user defined functions on a row by row basis. What are you trying to do?
November 1, 2005 at 3:09 pm
The out of box maint plans do backups in a serial fashion for all selected dbs. Do you need a more robust backup plan? What are you using to do...
November 1, 2005 at 3:05 pm
What type of maint is this job doing?
Transaction log backups? One or more databases are probably in SIMPLE recovery model.
DBCC? You probably have attempt to repair errors when they...
November 1, 2005 at 2:58 pm
Both qa and production return 1 when you run count(*)? What do you get when you run the update outside the proc? Is there more to the proc than posted?
November 1, 2005 at 2:48 pm
Are you trying to take advantage of AWE memory?
November 1, 2005 at 12:14 pm
Are you sure you have the right proc as the one above is an update and the first message talks abount an insert!
November 1, 2005 at 12:02 pm
The answer is you are probably updating 4 rows in production. Run the query below on both production and QA.
Select Count(*)
From logins
Where userid = 'the_userid_passsed_when_sproc_was_called'
November 1, 2005 at 11:51 am
Are you using a DSN or DSNless connection? Please post the connection string you are using in your asp page!
November 1, 2005 at 9:25 am
This is a double post by the subject and has been answered.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=232418
November 1, 2005 at 4:49 am
DatePart returns an integer so the addition is correct, but not desired! For an update on as datetime column I would also return that column and use a DataAdd function...
November 1, 2005 at 4:45 am
No work around just do as the message asks!
Insert Into dbo.tablename (column list, which you did not supply)
Values (etc...)
October 31, 2005 at 1:51 pm
Did the service actually stop or was it stopping? Check your logs, as it is probably rolling back, checkpointing or in recovery!
October 31, 2005 at 9:29 am
We are not talking about EM we are talking about a system table in the user db!
October 31, 2005 at 9:19 am
Viewing 15 posts - 76 through 90 (of 182 total)