Forum Replies Created

Viewing 15 posts - 1,201 through 1,215 (of 2,488 total)

  • RE: How to add a header/footer in excel file

    Do you mean page header/footer, or just headers for the data columns?

    You could,

    a) just create a tab delimited text file. Excel opens these fine. You get the column headers but...

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

  • RE: Retrieving current task name

    There is no method of determing the name of the task itself. I have a similar setup for my error handling and had to manually put the task name in...

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

  • RE: Execute SQL Task

    Better option is to wrap your call to xp_cmdshell in your own stored procedure that returns a success/failure via an output parameter. Then you can pick it up using the...

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

  • RE: Hello, How can get the server name of a MSOLEDB of a DTS?

    Presuming you want to get a list of the SQL Servers in a DTS package? If so, you'll need to write a short VBScript to trawl through the DTS object...

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

  • RE: Stored Procedure Execution Hangs from DTS

    Have tried looking at the execution from Profiler? It might uncover whats going wrong?

     

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

  • RE: Problem exporting to Excel

    Don't know if this suit you needs, but how about trying this?

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

    If that doesn't fit then there is a workaround here,

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

     

     

     

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

  • RE: xp_dirtree behaves differently between SQL Server Installations

    Hmmm ... smells like a permissioning issue.

    Are the services on the production server running with the same level of permissions as the test server?

     

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

  • RE: Database Statistics

    You could also look at Microsoft's new SQL Health and History tool.

    This tool captures information about the Server and Database and with the add-on Performance collecter, it captures any Performance...

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

  • RE: SQL Server 2000 not listening on TCP/IP port 1433

    Ok, so it's using the SSNETLIB.DLL, but as shown by this line

    "2005-05-03 15:32:30.26 server SQL server listening on Shared Memory, Named Pipes."

    The server is NOT listening on TCP so therefore...

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

  • RE: create text file from query analyzer

    Funny, there's no pain involved when I run a DTS package from a stored procedure. Then again, I've always thought my system was magical. It does seem to easily do...

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

  • RE: ActiveX Rename With Date Function

    You already have the filename and extension in the sSourceFile variable. So what you can do is use the GetBaseName and GetEstensionName methods to build a new file name for...

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

  • RE: ActiveX Rename With Date Function

    What error are you getting? The code snippet below will show a message box with the error.

    On Error Resume Next
    oFSO.MoveFile sSourceFile, sDestinationFile
    If Err.Number <> 0 Then
        MsgBox "ERROR: "...

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

  • RE: SQL Server 2000 not listening on TCP/IP port 1433

    A couple of potential problems from the log,

    "2005-05-03 15:32:30.26 server SQL server listening on Shared Memory, Named Pipes."

    You might need to enable the TCP/IP protocol before SQL will listen on...

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

  • RE: Why I can not restore from network mappping drive?

    A service running as a system account has no privelages for any networked resources.

     

     

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

  • RE: ActiveX Rename With Date Function

    So are you trying to rename the file in a folder, or change the source filename for a connection?

    To change the filename in a folder, there isn't a file rename...

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

Viewing 15 posts - 1,201 through 1,215 (of 2,488 total)