Forum Replies Created

Viewing 15 posts - 61 through 75 (of 86 total)

  • RE: does reindexing automatically update statistics?

    Reindexing does not update statistics. Use sp_updatestats, or turn on Auto Update Stats in the db properties. -JG


    -JG

  • RE: How do I copy a SQL database?

    DTS, Data Transformation Services. Use the import and export wizard and it will walk you through all the details. -JG


    -JG

  • RE: Discover SQL Servers on a Network

    See dbserverenum in Books on-line. -JG


    -JG

  • RE: Copying data using DTS

    Steve, that was the solution, in addition, I had to use MoveFile instead of Move.

    objFSO.MoveFile(strFileSourec, strDestination)

    Thanks for the Help! -JG

    Edited by - jgee on 01/11/2002 11:53:50 AM


    -JG

  • RE: Copying data using DTS

    I MsgBox strFileSource and strDestination after the IF nad it returns the correct path for the file. very Strange. Still at wits end. Let me know if you see anything...


    -JG

  • RE: Copying data using DTS

    It errors out on the .Move line. Stating: Object required: 'strFileSource'


    -JG

  • RE: Copying data using DTS

    I am taking your advice on backing up and moving the file to the server then performing a restore. I am having trouble with the FileSystemObject Move. What do I...


    -JG

  • RE: Top 10 sql statements

    Are you talking about the last ten statements? I would suggest using Profiler to capture what you are after. -JG


    -JG

  • RE: mmc.exe error

    I had to copy over the MSDesigner98 folder then re-install SQL7 and SP2. Probably could of got by just re-applying SP2 after I copied over the folder, but this did...


    -JG

  • RE: Profiler - Logging Results to a Table

    From my experience; is'nt it optimal to send the results to a file, then save it to a SQL table? Seems profiler writes faster to a file than a table....


    -JG

  • RE: Add a column to all user tables in a Database

    Try sp_MSforeachtable It is a system sp. -JG


    -JG

  • RE: how to pass sql commands using a text file

    Not sure about your specifics on using a text file, but one option, you could create your statements and call them through the ISQL utility. There are a few more...


    -JG

  • RE: Thinking about going DBA..

    I used to be a Systems Engineer until I migrated over to the DBA role. I really enjoy it! Being a good DBA allows you to use all of your...


    -JG

  • RE: How do I delete the log file for a dB?

    I agree, the attach and detach technique is fantastic for manipulating the files. -JG


    -JG

  • RE: DTS Help

    I agree with you Steve. I had no idea there were a lot of quirks in DTS. The one post on using other tables and pumping out emails to monitor...


    -JG

Viewing 15 posts - 61 through 75 (of 86 total)