Forum Replies Created

Viewing 15 posts - 16 through 30 (of 117 total)

  • RE: The SQLCLR Impact

    We use CLRs (have for some times) with custom C# code. Previously, it ran on all of our customer-facing SQL servers (non-SSRS report servers), now only one server uses it...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: how to take script for database table data

    You could write a script to BCP out the data?

    Here is something I run to generate data from a table to convert it into a SELECT statement:

    USE MyDatabase

    Go

    DECLARE...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: VS 2005 Task Config Error

    I know this is an older post, but we just ran into a similar problem and "googling" the issue, this was only one of two responses that came up.

    We...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: High Index Count/Space versus High CPU and Logical/Physical Reads

    I totally agree about blindly accepting missing index recommendations! 🙂

    We run a process weekly that checks the server uptime (3 days or greater is our criteria), then capture all of...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: SQL Agent Job Sudden Failure, Login failed for user NT AUTHORITY\SYSTEM.

    Sorry for any confusion... I believe there are a few levels of "ownership" (http://qa.sqlservercentral.com/articles/SQL+Jobs/68764/) per my understanding?

    1) The account that is configured to run SQL Server Agent...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: Job taking 50 hours to run

    Not what you may want to hear, but have you may have to convert the process (temporarily) to use a different methodology, if it is that important?

    - Are you...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: SQL Agent Job Sudden Failure, Login failed for user NT AUTHORITY\SYSTEM.

    Nope. No proxies.

    The job is actually run with a custom higher level account with full permissions in every database. Yes, it has full SA permissions... again, please no discussions...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: SQL Agent Job Sudden Failure, Login failed for user NT AUTHORITY\SYSTEM.

    Sorry for taking so long to response back on this... I know I personally do not like it when a thread suddenly "quits" without any resolution, especially when I am...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: Can't start SQL Server service as Network Service

    Did you check to see if Network Service has permissions in the new instance?

    USE Master

    GO

    select left(name,25) name, type, type_desc

    from sys.server_principals AS log

    WHERE (log.type in ('U', 'G',...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: Backup Log Incorrect Function Message (nonrecoverable I/O error).

    Ok... I was finally able to jump back on this problem and get it resolved:

    1) Did a full backup this AM.

    2) Detached the database.

    3) Renamed the LDF...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: Backup Log Incorrect Function Message (nonrecoverable I/O error).

    Gail,

    Thanks for the response! I am worried that a restore may be in order, but that usually takes 2-3 days, due to the size of the database (853 GB...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: Backup Log Incorrect Function Message (nonrecoverable I/O error).

    LOL. Sorry... problem with being at work with a cold? Not enough coffee yet? Actually, I ran both DBCC CheckDB (last week) and CHKDSK (today), no errors with either.

    I...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: SSRS - Column headings don't display on subsequent pages

    Even though this is an older post, some (like me) researching this might find this useful:

    Apparently, setting the "Tablix properties" is only good for a Matrix and not a...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: Installing Replication Components on Existing Instance

    I had a similar issue (tried to install Replication after the initial install/patch of SP). Trying to run via the Media (Setup.exe) and adding replication failed (version issue error messages)....

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

  • RE: Views and Dependencies

    That said, if you are fortunate enough to have a complete lineage-impact matrix of your entire solution and can accommodate all downstream dependencies, a suitable script would be a valuable...

    Argue for your limitations, and sure enough they're yours (Richard Bach, Illusions)

Viewing 15 posts - 16 through 30 (of 117 total)