Viewing 12 posts - 1,036 through 1,047 (of 1,047 total)
PROBLEM RESOLVED.
What was causing this was an addition of a linked server insert... a single row insert to a table on another server, to the activated stored procedure.
Even though no...
April 4, 2009 at 5:55 am
The user has the necessary permissions as a login and a user in that database to execute procedures and update some tables. This has all been verified by logging in...
April 3, 2009 at 2:16 pm
The exact error in the SQL Server log is:
The activated proc [dbo].[QSVThreatAssesmentProcessor] running on queue [Errors].[dbo[.[QSVInputQueue] output the following: 'Login failed for user 'xxxxxx'.'
The procedure is being activated and executed...
April 3, 2009 at 1:56 pm
I would need to look at a lot more details of the queries, the business logic and the database design, but generally I can pass along some general information.
Basically, you...
December 10, 2008 at 6:39 am
That way will work fine also. You'll just have to make sure those drive letters always auto-mount after reboot and before SQL server starts up.
December 9, 2008 at 8:55 am
generate a script with the commands to add the Server2\user to ABC database and grant the user the necessary permissions.
You could script that user and his roles & permissions on...
September 10, 2008 at 2:18 pm
rbarryyoung (9/3/2008)
This should work then:
Update c1 set descr = n1.descr
From cit c1
Join nit n1 ON c1.cno=n1.cno
actually, that join would set descr = to the "2nd" description...
September 3, 2008 at 3:27 pm
One approach would be to set the additional variables to a value that would include all rows if they are not supplied. For example:
if @keyword1 is NULL
...
July 21, 2008 at 3:27 pm
try usin brakets around the name: [Database_Name]
July 21, 2008 at 1:59 pm
One other thing... make sure "WITH NO_LOG" is not being used somewhere in a job statement (or maintenance plan). That will break your log chain also.
June 18, 2008 at 7:48 am
be sure there are no other jobs which would truncate the transaction log. I found a similar situation on one server I worked on, where someone must have been concerned...
June 18, 2008 at 7:31 am
Viewing 12 posts - 1,036 through 1,047 (of 1,047 total)