Forum Replies Created

Viewing 11 posts - 1,036 through 1,047 (of 1,047 total)

  • RE: Pulling my hair out on weird service broker problem

    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.

  • RE: Pulling my hair out on weird service broker problem

    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.

  • RE: Deadlock on table

    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.

  • RE: Moving DB and Log files to a SAN

    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.

  • RE: Log Shipping and domain accounts

    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.

  • RE: UPdate statement

    how did you know it was the "first"?

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: UPdate statement

    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.

  • RE: Is it possible to have several signatures for the same stored procedure?

    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.

  • RE: Alter Database script fails for databases with an _ in the name

    try usin brakets around the name: [Database_Name]

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Log Shipping Secondary Server Restore problem

    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.

  • RE: Log Shipping Secondary Server Restore problem

    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.

Viewing 11 posts - 1,036 through 1,047 (of 1,047 total)