Viewing 14 posts - 31 through 44 (of 44 total)
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...
June 14, 2006 at 11:36 am
Make a cursos for all the tables in sysobjects
use this query to compare
SELECT *
from database1..Information_Schema.COLUMNS
where Table_Name=@tableName
June 6, 2006 at 7:46 am
The same happen to , have you try install SP4 for sql server
June 6, 2006 at 7:38 am
agree with pokitlok I always do the same. but some times I use temp table , must of the time to avoid cursors.
June 2, 2006 at 8:35 am
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...
June 1, 2006 at 1:52 pm
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...
May 10, 2006 at 8:43 am
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 ?
April 17, 2006 at 9:01 am
After you saved on the .bas file VB file. what do i need to do to imported in another server ?
March 22, 2006 at 8:33 am
You need SQLserver 2000 developer edition. Standar and Enterprice editions are for server only. Developer edition have every think on it.
December 21, 2005 at 8:53 am
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...
December 19, 2005 at 9:55 am
Funny thing you are right , never notice this.
use this
copy E:\temp\Fi*.txt = E:\temp\Coll.txt /B
i would work.
November 11, 2005 at 8:11 am
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...
November 10, 2005 at 7:40 am
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...
October 3, 2005 at 8:27 am
Viewing 14 posts - 31 through 44 (of 44 total)