Viewing 15 posts - 1,426 through 1,440 (of 2,268 total)
post the error messages.
Quite often when a job runs fine locally and does not work on the server, it comes down to permission issues on the data sources/destinations. So...
April 30, 2009 at 5:45 am
Adding a ChangeDate would be the most effiect way of doing this,
If that is not possible you could write some T-sql to compare the data in the rows...
April 30, 2009 at 5:43 am
use the code tags
-
-
5
false
false
bgfade
207
162
window
-...
April 29, 2009 at 9:57 am
it would depend on whether or not the server has been setup with an instance or not.
April 29, 2009 at 6:28 am
You say you are using SQL 2000, but this is in the SQL 2005 forum, so you have a copy of SSIS avalaible?
if so, this could be...
April 29, 2009 at 5:36 am
You can do this using a script, you will probably need to use SELECT DISTINCT and GROUP BY to remove duplicates. Without knowing exactly what you are doing...
April 29, 2009 at 4:58 am
How are you doing the deletes?
April 28, 2009 at 9:27 am
when you switched to full-backup mode, did you schedule t-log backups? as it looks like you have run out of room in the t-logs
April 27, 2009 at 9:09 am
You should be backing up your transaction log at regular intervals, this will mark the space for re-use and should stop it from growing too large..
Also it allows you...
April 27, 2009 at 9:00 am
CTEs were only introduced with SQL 2005 so this code witll not work on 2k.
You should be able to re-write the code to use temp tables instead of CTEs...
April 27, 2009 at 8:48 am
as your are using uni-code character you will need to use the leading unicode 'N'
insert into table_1 values N' ????????????
???????
???????
?????
'
also make sure you are using a Unicode data type for...
April 27, 2009 at 7:42 am
You can use SSIS to transfer the objects.
But by far the easiest way is to do a backup/restore or detach/attach of the database.
Why do you not have any backups?
April 27, 2009 at 5:03 am
Use SSIS to put these Five files into a staging table, and then use the code that WayneS has provided to copy the new data from the staging...
April 24, 2009 at 10:20 am
what information do you want on the row, for the example you gave there are values that are different between the rows,
for example the top row has 46, where...
April 24, 2009 at 10:08 am
Viewing 15 posts - 1,426 through 1,440 (of 2,268 total)