Forum Replies Created

Viewing 14 posts - 31 through 44 (of 44 total)

  • RE: Slow query

    It is becuse of the PK cluster index, the same happen to me , my solution is always,  when i want to copy alot of record drop the index and...

  • RE: Schema comparison

    Make a cursos for all the tables in sysobjects

    use this query to compare

    SELECT *

    from database1..Information_Schema.COLUMNS

    where Table_Name=@tableName 

  • RE: 2000 DTS from 2005 Management Studio

    The same happen to , have you try install SP4 for sql server

  • RE: Is a Temporary Table Really Necessary?

    agree with pokitlok I always do the same. but some times I use temp table , must of the time to avoid cursors.

  • RE: MSDE Replication Problem

    So you are saying that the suscriber are in the server too ?, can you explain a litte more about your suscriber and publisher. How can you have the Agent...

  • RE: Database growing unusually

    Does any of the process running is this servers use temporals tables ?

    It use to happen to me that a store procedure made for a report was ussing temporal...

  • RE: compression software

    On my experienci i'm ussing rar instead of zip , it compress more that zip. The bigger file that i have compress is 55 GB. Who big is yours ?

  • RE: How to backup a dts-package

    After you saved on the .bas file VB file. what do i need to do to imported in another server ?

  • RE: Install SQL 2000 on Windows XP Prof

    You need SQLserver 2000 developer edition. Standar and Enterprice editions are for server only. Developer edition have every think on it.

     

  • RE: Variable input textfile name -> database table

    What i use to do is run a command line like this

     

    d:\

    cd "my files"

    Copy *.* allmyfiles.csv

    and on the DTS you conect to the allmyfiles.csv

    after execution delete the files.

    like this.

    d:\

    cd "my...

  • RE: DTS + files

    copy /?

     

    /B binary files.

  • RE: DTS + files

    Funny thing you are right , never notice this.

    use this

    copy E:\temp\Fi*.txt = E:\temp\Coll.txt /B

    i would work.

  • RE: DTS + files

    We have the same problem , what we use to do is to run a command like using the stored procedure

    EXEC master..xp_cmdshell

    calling the http://FTP.exe program.

    we made a...

  • RE: Optimize Query

    SELECT *

    FROM a,b

    WHERE (A.FNAME = B.FNAME OR A.FNAME = B.MNAME OR A.FNAME = B.LNAME OR

       A.MNAME= B.FNAME OR A.MNAME= B.MNAME OR A.MNAME= B.LNAME  OR

       A.LNAME= B.FNAME OR A.LNAME= B.MNAME OR...

Viewing 14 posts - 31 through 44 (of 44 total)