Viewing 11 posts - 1,036 through 1,047 (of 1,047 total)
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...
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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.
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
September 10, 2008 at 2:18 pm
how did you know it was the "first"?
The probability of survival is inversely proportional to the angle of arrival.
September 3, 2008 at 3:34 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...
The probability of survival is inversely proportional to the angle of arrival.
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
...
The probability of survival is inversely proportional to the angle of arrival.
July 21, 2008 at 3:27 pm
try usin brakets around the name: [Database_Name]
The probability of survival is inversely proportional to the angle of arrival.
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.
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
June 18, 2008 at 7:31 am
Viewing 11 posts - 1,036 through 1,047 (of 1,047 total)