Viewing 15 posts - 3,106 through 3,120 (of 3,233 total)
jeffroyal's method for renaming the file to the source filename that your DTS task is expecting should work fine. As far as only importing certain columns, I believe that you...
December 14, 2005 at 3:42 pm
If this is a production system, I would recommend individual maintenance plans for each databases. You do not want a problem with one database to affect the backups/maintenance of the...
December 14, 2005 at 3:28 pm
He needs more than just a delete trigger. It states in his first example that when new records are inserted, the previous records need to be updated with an end...
December 13, 2005 at 9:40 am
It sounds like you want a stored procedure that will go throgh and snyc your start/end/elapsed times in your table. You could accomplish this real-time using instead of triggers. Will...
December 12, 2005 at 1:17 pm
The use of a temporary table would eliminate the need for patIndex. You would have to redesign your stored procedure to work off of the temp table instead of using...
December 12, 2005 at 11:06 am
Will each customer have a running balance? Why not create a customer table to hold customer info?
December 12, 2005 at 10:59 am
Have the sysadmin sign in using 'sa' and either re-attach your DB, or reassign your default DB. Hopefully you were not using 'sa' already.
December 9, 2005 at 4:31 pm
It looks like you want to make the data in the inserted table available in your stored procedure and you know that you cannot access inserted table from a sp,...
December 9, 2005 at 4:16 pm
1. ?? good question.
2. I have seen measurable performance improvements when increasing the block size of a RAID stripe/mirror in UNIX systems. I would say that this if you...
December 9, 2005 at 2:50 pm
Steve, Vinny:
My last post was meant to rebuke David Wootton's post prior to Steve's. I have taken the angle all along that Mr. Wood is running SQL Server on a...
December 9, 2005 at 10:32 am
I'll agree on the fact that his organization needs to put some more money into thier system. Keep in mind that not all companies can cost justify new hardware purchases...
December 9, 2005 at 9:59 am
When he talks about virtual servers, he is not referring to a clustered environment. He is running VM software on his server and that one physical server is split into...
December 9, 2005 at 8:11 am
Just curious, why does it need to be all in one query?
December 8, 2005 at 3:15 pm
When you say application roles, I assume that you mean user database roles? If this is the case, use sp_addrolemember Use this sp, or write your own that calls this SP. ...
December 8, 2005 at 2:59 pm
Viewing 15 posts - 3,106 through 3,120 (of 3,233 total)