Forum Replies Created

Viewing 15 posts - 31 through 45 (of 172 total)

  • RE: FTP Remote file properties

    Try issuing a DIR or ls to the remote FTP server once you log in.  You can then parse the result to get the date of the file.

  • RE: Reading txt file then creating new table

    You need to enclose the path in quotes:

    "C:\Documents and Settings\datamining\My Documents\loadfile.bat"

  • RE: XP_Regread Error 5 in SQL 2005

    its possible that you don't have permissions to read the registry key itself.  I'm not sure how to set permissioins up, but there are permissions in the registry similar to...

  • RE: Problem with Database Mail and SMTP Virtual Server

    Sounds to me like your email server is the one thats not letting the mail get sent.  can you have your admin add the email address you are sending from...

  • RE: Add auto num...

    add some vb code to your report that sets up two functions and one counter.  something like this:

    dim MyCounter as integer

    public function ResetMyCounter()

    MyCounter = 0

    end function

    public function GetMyCounter()

    MyCounter = MyCounter...

  • RE: How to reduce workload for changing sa password

    Morten's got it right, a big old batch file is needed to do the actual work.  But take it a step further, put your server names in a table and...

  • RE: Reporting Services

    open a new Visual Basic 6 project

    add a component from the Project/Components menu Microsoft Internet Controls

       this will add a web browser component to your toolbar

    put the new WebBrowser component...

  • RE: Access sql server data from Unix?

    I know a guy in denver that his company is using Kerberos to do that kind of authentication.

  • RE: How do I ignore an MSDTC Error???

    There are some error messages you just can't grab.  How about this idea, using a stored procedure write a batch file based on the list of servers that you need to query...

  • RE: Running rskeymgmt silently

    Use an old fashoned DOS command line trick:

    echo y | rskeymgmt -e -f SRSKey -p password > extract.log 2>&1

    The echo sends a Y character into the standard input and answers...

  • RE: Reporting Services

    add a new form to your app, put a browser on it and navigate to the reports.  you can fill in parameters in a query string on the URL to...

  • RE: DTS Import from Access

    You may have to create a seperate access database, populate the tables, then close that database and call the DTS package.  DTS doesn't like to work with files that are...

  • RE: Full server documentation into an .xls?? Using this sp...

    Nice!! Very Nice!  Thanks!

  • RE: Two Users Pulling Same Account Problem

    Have you looked into using Transactions?

  • RE: Rsconfig.exe

    on my 2000 install its in C:\Program Files\Microsoft SQL Server\80\Tools\Binn\RSConfig.exe

Viewing 15 posts - 31 through 45 (of 172 total)