Viewing 15 posts - 2,041 through 2,055 (of 2,486 total)
I would setup a scheduled job, remove the schedule. Then write a stored procedure to check the execution status of the job and call sp_start_job to start it. This procedure...
October 9, 2003 at 5:07 pm
Have a look at "Text in Row Data" in Books Online.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 9, 2003 at 4:59 pm
Don't use BCP, use BULK INSERT. Load the table in a staging table first. Make sure you check out "Optimizing Bulk Copy Performance" in BOL.
Then use stored procedures to...
October 9, 2003 at 4:51 pm
The package is stored in sysdtspackages as a binary object. What you'll need to do is,
a) manually open each package and check the required properties. (got some time to waste...
October 8, 2003 at 6:05 pm
Check if you have the auto-close option set. When you expand the databases folder in EM, it will check the status of each database. If they are set to auto-close,...
October 8, 2003 at 5:52 pm
Re-apply service pack and/or re-install client tools. Something else that was installed may have replaced one of the necessary DLL's.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click...
October 8, 2003 at 5:31 pm
Import your data into a staging table first. Then do all your de-duping for insertion into the destination table. This way you don't have to fiddle with PK's.
Hope this helps
Phill...
October 8, 2003 at 5:29 pm
If you're using SQL 2000, use a table type variable.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 7, 2003 at 12:57 am
Are all these databases on one server?
If you perform an hourly transaction log backup, and it takes nearly an hour, maybe you should look a doing them more often, or...
October 6, 2003 at 5:29 pm
Very familiar ... more often than not it relates to a security issue.
Can you provide a bit more info on where you receive this error?
Hope this helps
Phill Carter
--------------------
Colt 45 -...
October 6, 2003 at 5:24 pm
Ummm ... maybe you're missing something.
I have a couple of views defined that use a select statement in the FROM clause.
CREATE VIEW dbo.vw_AsxRptCosts
AS
SELECT
UserID
, ItemMonth
, ItemYear
, SUM(
CASE
WHEN...
October 6, 2003 at 5:22 pm
Are you sure you are using the correct mail profile? The SendMail task will only show local profiles.
You need to log into the server and edit the DTS package. Or...
October 6, 2003 at 5:02 pm
Couple of things to check,
OS and SQL service packs at same level.
Same MDAC on both machines.
Any other DB type application on the slow server? Something that could require older DLL...
October 5, 2003 at 11:45 pm
quote:
Why not do a backup of your DEV and restore on TST and STG. This would be much faster then DTS and...
October 5, 2003 at 10:28 pm
Viewing 15 posts - 2,041 through 2,055 (of 2,486 total)