Forum Replies Created

Viewing 15 posts - 1,786 through 1,800 (of 2,487 total)

  • RE: "sqlmaint.exe failed" when using xp_Sqlmaint

    Right-click on the maintenance plan and select "Maintenance Plan History". This is where you'll find much more descriptive error messages.

    --------------------
    Colt 45 - the original point and click interface

  • RE: DTS to take data from my outlook inbox and save it as textfile

    Take a look at creating something in DTS using VBScript to reference CDO objects.

    EG:

    Set objSession = CreateObject("CDONTS.Session")

    objSession.LogonSMTP ("Joe Friday", "joe@here.com")

    Set objInbox = objSession.Inbox

    Set colMessages = objInbox.Messages

    MsgBox objInbox.Name & " –...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Column width

    In the report definition, the "Can grow..." and "Can Shrink..." properties will adjust the height of the field. I don't think you can dynamically adjust the width though.

    Have you posted...

    --------------------
    Colt 45 - the original point and click interface

  • RE: deploying .NET app to PDA not working...

    What connectivity does the PDA have? Modem/Network/USB Sync?

    You might need to set/change the ip addressing or proxy.

    --------------------
    Colt 45 - the original point and click interface

  • RE: How do view execute?

    Can you paste the full query?

    --------------------
    Colt 45 - the original point and click interface

  • RE: How do view execute?

    Easiest way to check out what's happening is to paste the full statement into Query Analyzer and execute with "Show Execution Plan" selected, or use "SET SHOWPLAN_ALL ON" at the...

    --------------------
    Colt 45 - the original point and click interface

  • RE: How do I identify currently executing jobs in SQL Server Agent using T-SQL

    Take a look at sp_help_job. This proc calls xp_sqlagent_enum_jobs which determines the jobs current status.

    --------------------
    Colt 45 - the original point and click interface

  • RE: Calling a Reporting Services report from a web page menu

    Make sure you check out the ReportViewer sample application.

    I know a lot of people are using this to render reports when they have parameters that aren't handled by the Report...

    --------------------
    Colt 45 - the original point and click interface

  • RE: What is the Best Way for Comparing Datetime value in SQLSERVER 2000?

    I always pass dates using the three character month. eg: 20 Apr 2004

    This way SQL will always convert it to the correct datetime regardless of the regional settings.

    This format is...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Cursors - need to help to explain why to not use them

    Just to add another twist in the story.

    We have a regular process that archives records on an hourly basis from a table that has 10mil+ rows. Each hour approx. 1000...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Disable sa account in 2000

    Have you specifically set the default database in the System DSN?

    For the VBScripts, you should be able to modify a connection string.

    --------------------
    Colt 45 - the original point and click interface

  • RE: Global Variable gone missing

    Julie

    Thanks for your reply, however I don't think this is the case. The ExecuteSQL task that sets the variable is the first step in the package and the variable isn't...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Global Variable gone missing

    Ooops ... sorry ... SQL 2K sp3a, W2k Server sp4

    The ExecuteSQL task is just "SELECT COUNT(field) FROM Table". If you are thinking about discrepancies in the record count, that won't...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Ad-hoc query tools

    Take a look at http://www.querytool.com/index.html

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Deleting files which are no longer required

    Take a look at this example,

    http://www.sqldts.com/default.aspx?298

     

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 1,786 through 1,800 (of 2,487 total)