Viewing 15 posts - 16 through 30 (of 43 total)
Yes, the mapped drive shows up using NET USE and I have dropped & re-created this map a few times already. I even tried using different drive letters.
By the way,...
March 24, 2005 at 12:31 pm
Thx for the suggestions, I'm afraid I may need more of them though...lol
The SQL agent uses a domain account I setup for just this kind of needed access. I know...
March 24, 2005 at 12:05 pm
I realize your new but you should be sure to read the whole post.
This is SQL7.0 and yes you can right click and populate the cat in 7.0 as well...
December 7, 2004 at 8:39 am
Re-installing SQL sp4 after installing Full Text fixed the problem.
November 19, 2003 at 3:41 pm
I passed my variables from asp page to a user stored procedure which in turn created a DTS package (sp_OACreate 'DTS.Package') which set the global variables using (sp_OASetProperty). Works great,...
November 19, 2003 at 1:42 pm
I transfer spreadsheet data into my SQL db to save the space. Those spreadsheets eat it up no matter whats in them.
Archie Smith
MCSE, ASE, DBA
Intranet IT Administrator
Web Applications Developer
June 23, 2003 at 7:57 am
Doesn't this seem like the perfect situation to build a trigger?
March 3, 2003 at 7:47 am
OK, same idea using the DTSGlobalVariable.
Go to your Transform data workflow connection(data pump). Open it's properties and go to the tranformations tab. Delete your existing mapping then select an ActiveX...
September 10, 2002 at 9:38 am
Give the client, that activates the DTS Pkg, system administrator permission on your SQL server then give it a try. It sounds like security.
September 9, 2002 at 4:04 pm
Not sure I understand your problem but I'll give it another shot. The following is a sample script which re-directs an excel connection in a DTS Pkg.
'*****************************************
' Visual Basic...
September 9, 2002 at 3:58 pm
SQL7 DTS only uses DTSGlobalVariables, sorry I thought I had made that clear. You must use DTSGlobalVariables. Theres no other way, period.
September 9, 2002 at 1:30 pm
Dim objPackage
Set objPackage = CreateObject("DTS.Package")
objPackage.LoadFromSQLServer "servname","","","256",,,,"Pkgname"
' set the global variables
objPackage.DTSGlobalVariables.Item("somevariable").Value=somevalue objPackage.DTSGlobalVariables.Item("somevariable").Value=somevalue
' Execute the Package
objPackage.Execute
objPackage.Uninitialize()
objPackage = Nothing
Checkout http://www.SQLDTS.com
I suggest calling a stored procedure to start your DTS pkg...
September 9, 2002 at 11:58 am
Maybe you've figured it out by now but in case you haven't, what you guys need to do is have your page call a stored procedure which in turn calls...
September 9, 2002 at 11:49 am
YES! what your saying makes total sense to me. I didn't make any changes on the SQL7 server or the pc with SQL7 client. YES! I checked sysobjects and all...
August 22, 2002 at 9:24 am
Viewing 15 posts - 16 through 30 (of 43 total)