Forum Replies Created

Viewing 15 posts - 151 through 165 (of 295 total)

  • RE: Output PRINT cmd

    I've used this http://www.sqlservercentral.com/scripts/Index+Management/30721/ before to log reindexing, I think it works on SQL 2005 as well you'd need to try it.

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

  • RE: Using SSIS to zip files and email the zipped files

    Thats great news glad you've got it working.

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

  • RE: Using SSIS to zip files and email the zipped files

    Try adding some logging on the job when it runs to get some more information its a bit difficult without seeing the job you've set up to tell what's happening

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

  • RE: Using SSIS to zip files and email the zipped files

    There is absolutely no reason why this shouldn't work, have you double checked all the variables and connections?

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

  • RE: New Security Treat - KB958644

    Thanks

    We now have it on 90% of servers with no issues as yet.....

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

  • RE: Using SSIS to zip files and email the zipped files

    Can you post the command you are running?

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

  • RE: REINDEX JOB FAILED

    Is there any more information in the maintenance plan log, when the job runs.

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

  • RE: REINDEX JOB FAILED

    I had similar happen, to debug I usually go to the maintenance plan and get the script of the job that runs, and run it manually in Management Studio. It...

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

  • RE: Locks held by a deleted log-in

    It could be that a SQL Agent job is being run by the user account still, it may just his windows account has been removed. Check if that user account...

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

  • RE: Using SSIS to zip files and email the zipped files

    piet_dj

    M Chabot is correct here the instructions you download with 7 zip will give you the syntax to password protect the file if this is needed.

    I find it useful ...

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

  • RE: Using SSIS to zip files and email the zipped files

    Shouldn't it also be possible to use native Windows functions to compress and uncompress groups of files into .zip-compatible archives? NOT "compress" like the command line .exe or operating...

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

  • RE: Using SSIS to zip files and email the zipped files

    I think its up to 4GB, using 7 zip, but you should really check on the 7 zip site http://www.7-zip.org/. If the files you want to zip are bigger than...

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

  • RE: SQL server and sql agent service account.

    To find the service account:-

    SET NOCOUNT ON

    USE MASTER;

    DECLARE @serviceaccount varchar(100),

    @agentaccount varchar(100)

    --Retrieve the Service account from registry

    EXECUTE master.dbo.xp_instance_regread

    N'HKEY_LOCAL_MACHINE',

    N'SYSTEM\CurrentControlSet\Services\MSSQLSERVER',

    N'ObjectName',

    @ServiceAccount OUTPUT,

    N'no_output'

    --Display the Service Account

    SELECT @Serviceaccount

    --Retrieve the Agent account from registry

    EXECUTE master.dbo.xp_instance_regread

    N'HKEY_LOCAL_MACHINE',

    N'SYSTEM\CurrentControlSet\Services\SQLSERVERAGENT',

    N'ObjectName',

    @agentaccount OUTPUT,

    N'no_output';

    SELECT @agentaccount

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

  • RE: Trouble with Rounding Columns

    Can you post the formula you are using at the moment and tell us the rounding you are trying to achieve?

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

  • RE: What Would You Recommend for Internal Web-App. Reporting?

    Reporting Services ticks all the boxes for your requirements. It also has some similarities with Access so it shouldn't be too hard to figure out. The interface to email reports...

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

Viewing 15 posts - 151 through 165 (of 295 total)