473,404 Members | 2,179 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

VB IMport

Hi all

I have made an import function using vb6, I get data from MS Access then put it into sql server 2000, however this is done by users so i have created a DTS package in sql server 2000. And coded it so users can execute when they liek using vb6. The problem is it works on my computer, I have sql tools, but it won't work on the users computer, we give them connection to slq server 2000. Could I be making a mistake on the code that executes this package. The following is the code

Set oCN = oPKG.Connections.New("SQLOLEDB")
oCN.ConnectionProperties("Integrated Security") = "SSPI"
oCN.ConnectionProperties("Persist Security Info") = True
oCN.ConnectionProperties("Initial Catalog") = gvCatalog
oCN.ConnectionProperties("Data Source") = gvSource

oCN.DataSource = Text1.Text

oPKG.LoadFromSQLServer gvSource, "", "", "256", "", "", "", strDTS

oPKG.Execute 'Execute Exporting data into SQL Server Temp Table
oPKG.UnInitialize

I have also tried doing it in one line but nothing seems to be working

Note:
catalog = database name
gvsource = server
strdts = name of dts package
Nov 9 '06 #1
3 3357
scripto
143 100+
The problem most likely is user permissions on the DTS package. Try changing the owner of the DTS package so everyone???? can execute it.
Nov 9 '06 #2
The problem most likely is user permissions on the DTS package. Try changing the owner of the DTS package so everyone???? can execute it.

How would you do that, as i can't see anything to do with permissions on the DTS package
Nov 10 '06 #3
scripto
143 100+
easiest way - open the DTS package and save it again.
Hopefully, if you belong to a group login, (and you should) anyone in that group will have permissions to run the package. Then adding or removing users from that group will allow you to control who has permissions to run the DTS package.
Nov 10 '06 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Stian Sřiland | last post by:
all examples performed with: Python 2.3+ (#2, Aug 10 2003, 11:09:33) on linux2 (2, 3, 0, 'final', 1) This is a recursive import:
0
by: Vio | last post by:
Hi, I've been trying to embed (statically) wxPy alongside an embedded py interpreter on a linux/gtk box. At one point, for some reason misc.o linking reported "multiple definitions of...
0
by: John Roth | last post by:
I've found a case where it seems that Python is importing two copies of a module without any reason or indication. It took me a while to verify that this is what is occuring: I had to write a...
5
by: Steve Holden | last post by:
This is even stranger: it makes it if I import the module a second time: import dbimp as dbimp import sys if __name__ == "__main__": dbimp.install() #k = sys.modules.keys() #k.sort() #for...
1
by: mark | last post by:
In Access 2000 and 2002, I have created an import specification to import the fixed-width recordset below into an existing table. I am having strange problems with the import of the date and time...
4
by: Bruce W. Roeser | last post by:
All, I'm reading a book by Charles Petzold (Programming VS.Net). Pretty good content but am confused about the difference. From the text: ...
2
by: Jon | last post by:
It appears that (windows) python searches in the current working directory before looking in the local site-packages directory, or that '.' comes first in sys.path? The problem arises when I made...
7
by: Ron Adam | last post by:
from __future__ import absolute_import Is there a way to check if this is working? I get the same results with or without it. Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) on win 32 ...
5
by: W. Watson | last post by:
Is there a single source that explains these statements? ------------------------------ from Tkinter import * from Numeric import * import Image import ImageChops import ImageTk import time...
9
by: rsoh.woodhouse | last post by:
Hi, I'm trying to work out some strange (to me) behaviour that I see when running a python script in two different ways (I've inherited some code that needs to be maintained and integrated with...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.