Forum Replies Created

Viewing 15 posts - 136 through 150 (of 295 total)

  • RE: Getting "not part of a multiple family media set" error when setting up backups to poin to new network SAN

    I've had a similar problem before when trying to restore a full backup with several successive logs, I had to restore the logs individually one by one to get it...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: IP address of Server that runs SSIS

    Obviously on a cluster you want the package to keep on working on failover, in which case you may want to store the package in the msdb, rather than in...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: SP_ExecuteSQL incorrect syntax

    added a few more '

    --ALTER PROCEDURE Activity

    --AS

    Declare @id as nvarchar(2)

    Declare @sql as nvarchar(4000)

    Declare @fld...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: IMPORT LATEST FILE using wql

    Try downloading the File Properties task from http://www.pragmaticworks.com/FilePropertiesTask.htm which will get you the file details to calulate the latest file.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: SP2 and SP3 mixed replication environment question

    I've not worked with SP3 before, but I have run into replication problems before when servers were patched at different levels, I wouldn't recommend it without testing it out first,...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Calling Integration Service from a trigger or SP?

    As sp_send_dbmail is already geared up to accept variables, it would make most sense to send the email directly from the trigger and not go to the extra overhead of...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Delete " how from Query:

    try:-

    UPDATE tablename

    SET [fieldname] = REPLACE([fieldname],'"','')

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: XML Returning Large Result Set Taking unmanageable time

    SSIS can be memory intensive, have the servers have different amounts of memory?

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: External access assembly permissions denied while deploying CLR assembly

    Have you altered the database properties to set trustworthy on?

    ALTER DATABASE Databasename SET TRUSTWORTHY ON;

    From BOL

    Because a database that is attached to an instance of SQL Server cannot be immediately...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Shrinking tempDB

    Restarting SQL Server should clear tempdb, you could try backup log tempdb with no_log which is a little less dramatic and could work.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Access Front end and SQL Backend table relationships

    You could try writing and saving the query in SQL Server as a stored procedure and linking to that in Access, that's worked for me before.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: SQL Agent Insert Error - Incorrect SET options

    From BOL

    Syntax

    SET ARITHABORT { ON | OFF }

    SET ARITHABORT must be ON when creating or manipulating indexes on computed columns or indexed views. If SET ARITHABORT is OFF, CREATE, UPDATE,...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: SQL SERVER AGENT

    I would try stopping SQL Server then setting SQL Server Agent to Manual, then starting SQL Server and then trying to start the agent manually. Just a thought but that...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: SQL SERVER AGENT

    I have been having similar problems with the SQL Server service, on 2 old SQL Server 2000 boxes after some windows patches have you tried:-

    Start / Run

    net stop SQLSERVERAGENT...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Database Restore Bingo

    Can you post the script you are using to create the backup and the script that you use to restore it?

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

Viewing 15 posts - 136 through 150 (of 295 total)