Viewing 15 posts - 46 through 60 (of 97 total)
You could build a small VB app to execute the DTS package and distribute the app to the required stations.
I am not sure about just installing dtsrun.exe as there could...
August 26, 2003 at 7:31 am
I never did this but I guess if you have an OLEDB Provider to access Lotus 123, it shouldn't be a problem using DTS to import the workbook.
August 25, 2003 at 8:14 am
ALTER DATABASE SET SINGLE_USER WITH [ROLLBACK IMMEDIATE | ROLLBACK AFTER integer [SECONDS]]
August 23, 2003 at 10:22 am
Why don't you use the Microsoft OLE DB Provider for Oracle for your connection, instead of the Oracle driver? I found this solved a lot of headaches in the past.
...
August 23, 2003 at 10:04 am
The easy way....ActiveX Scripting.
The easy way?...sp_OA... stored procedures.
August 21, 2003 at 12:14 am
Is your domain a native Windows 2000 domain with some Windows NT server?? If yes, take a look at this:
Is your account local to the SQL Server machine...
August 20, 2003 at 7:28 am
You could put your query into a transaction but for the situation you describe where you write a wrong condition, you may be out of luck once your transaction is...
August 20, 2003 at 6:58 am
You could BCP into a staging table as varchar, do some substringing to remove the (-) sign and import into the final table.
If DTS is an option, you could use...
August 20, 2003 at 6:51 am
Try using the three part naming for your table (databasename.owner.tablename).
August 20, 2003 at 6:46 am
Yes, the desktop engine could participate in merger and snapshot replication as a subscriber/publisher but could only be a subscriber in transactional replication.
In your scenario, you could set up merge...
August 20, 2003 at 6:42 am
More than one way to skin a cat..
You could use sp_OA.... stored procedures to instantiate and execute your DTS package. You could also execute dtsrun by using xp_cmdshell from...
August 18, 2003 at 6:11 am
One way I could think of is to wrap your API calls into a COM and instantiate and execute the COM using the sp_OA.... stored procedures.
August 18, 2003 at 5:55 am
Two things: use the three part naming scheme database.owner.table in your FROM clause; specify the complete path to your attachment PestErrors.csv
Hope this helps.
Joseph
August 14, 2003 at 7:11 am
What parameter are you passing to the stored procedure in @ui_category? Is this a column name in your table? You may also want to put your select statement into a...
August 13, 2003 at 5:44 am
I would also suggest you check your network hardware for bottleneccks, especially the network interface cards. I had a similar problem where a 562GB database backup was failing(with same error...
August 11, 2003 at 6:00 am
Viewing 15 posts - 46 through 60 (of 97 total)