Viewing 9 posts - 781 through 789 (of 789 total)
I've had Oracle (linked server) update problems before too. In that case it was because the MS driver for Oracle was great at getting data from Oracle, but wasn't...
June 6, 2003 at 12:52 am
Enterprise Manager's "Design Table" function has the ability to insert a column anywhere in the table rather than just at the end as an ALTER TABLE would do. BUT...
June 6, 2003 at 12:30 am
I agree you've probably been lucky until now. Any chance that your 3 variables have all contained the same date up until recently?
Fix list for SQL2000 SP3 has no...
June 5, 2003 at 10:20 pm
The "count(*) - 1" bit is simply my interpretation of what is a "duplicate". If a line appears 4 times, then methinks we have 1 original plus 3 duplicates....
June 5, 2003 at 8:32 pm
Try the following for a case-insensitive query against c:\temp\example.txt (assuming your SQL server is case-insensitive):
SELECT
COUNT(*)-1 AS Duplications,
...
June 5, 2003 at 5:11 pm
Lixin,
Try the following script (blatantly hijacked from MS code). Schedule it to run maybe 10 mins before each scheduled time of your problem job.
...
June 5, 2003 at 3:45 pm
You can try this. It doesn't do stuff like checking that you have enough overall capacity in your bins (you'll need another a separate error-checking query to do that)....
June 4, 2003 at 6:04 pm
Lixin,
I've had a look at your previous post. Unfortunately I can't see exactly what the Vineftp SP does, but it may be prone to any number of ftp problems...
June 4, 2003 at 4:45 pm
Narrie,
Try:
.
.
EXEC @hr = sp_OASetProperty @MailID, 'To', @To
-- Add the attachment file
EXEC @hr = sp_OAMethod @MailID, 'AddAttachment', NULL, 'InsertAttachmentPath&FileNameHere'
EXEC @hr = sp_OAMethod @MailID, 'Send', NULL
EXEC @hr = sp_OADestroy @MailID
June 4, 2003 at 3:31 pm
Viewing 9 posts - 781 through 789 (of 789 total)