Viewing 15 posts - 1 through 15 (of 18 total)
It has been a long time since I dealt with this issue in our environment, but it seems like changing the job to a SQL step using xp_cmdshell made it...
August 5, 2010 at 9:27 am
When connecting directly to the server where the global temp table was created, I can query it, but I cannot query over the linked server.
Using the linked server, I can...
May 17, 2010 at 4:55 pm
Is it possible to query from a global temp table from another server via linked server?
When I use
SELECT * from linked_server.db.owner.##GlobalTemp
I get a message:
Invalid object name ##GlobalTemp
May 17, 2010 at 4:35 pm
Did you ever find a solution to this problem? We are having the same issue with the same frustrations and no common threads other than it is a cmdexec job...
August 9, 2007 at 1:44 pm
Default operation would be to have this run serially. The VBScript would wait for the DTS package to complete before executing the next command. Right??
August 1, 2005 at 12:08 pm
One possible solution:
Rather than inserting directly to the table, create a table on the destination with the same structure and import to that table. You can think of this...
August 1, 2005 at 11:50 am
Use the Microsoft OLE DB Provider for ODBC Driver and the DSN is the same as the data source from the ODBC driver. The other fields are blank.
On the security...
February 3, 2005 at 3:19 pm
We have had success using the linked server connected to an ODBC driver as suggested by the original poster.
We use the openquery syntax as suggested above and access multiple libraries...
January 11, 2005 at 9:55 am
Thanks! I knew it had to be there somewhere.
December 2, 2004 at 9:03 am
Might be possible to create the large procs independently and then conditionally execute them with dynamic sql
August 10, 2004 at 12:13 pm
If you have a datetime field in the dataset you are updating, you can do a query to the table and check for today's date using an execute SQL task. ...
August 10, 2004 at 12:00 pm
You might also try running manually on the server. It could be a missing driver or drive mapping or something simple like that. When you run on your local machine,...
August 5, 2004 at 10:35 am
You might be able to update sysdatabases table in the master database with a new name and then try dropping it using the new name.
Good Luck!
July 20, 2004 at 12:13 pm
This sounds like a legacy minded solution. While it would probably work, when working with a database, recovery from abends *should* be painless if well written due to transaction logging...
July 12, 2004 at 11:23 am
Viewing 15 posts - 1 through 15 (of 18 total)