Link to home
Start Free TrialLog in
Avatar of IMacNeill
IMacNeill

asked on

Where to find list of valid properties which can populate the DTS.Connection-ConnectionProperties collection?

Hello, sorry to bother you with this - and hopefully it is a quick one.

Having trouble trying to track down where Microsoft hides their list of the valid property names which can be set/read for the ConnectionProperties collection of a DTS.Connection object.

I am attempting to setup a VB app which will automatically import a .CSV flat file into a pre-existing SQL2K table. I already have sample code that should get me through, although I am having some trouble with the available properties that can be set on the DTS.Connection object. I would like to access a list of ALL of the possible settings for this object (along with examples, if possible).

Some of the settings I already know are "Row Delimiter", "Column Delimiter", "Data Source" -- although I don't have a clue as to what the possible values are for "File Format", or what "File Type" settings are possible.

As this is urgent (as in I need to complete this project today), I'm assigning this 500 points.

Thanks in advance...

Avatar of miron
miron
Flag of United States of America image

IMacNeill,

       you need to use SQL Server On - Line documentation.

--cheers
Avatar of IMacNeill
IMacNeill

ASKER

If you can tell me what book/section I should be looking in, I'll give you the points...it's an awfully big document after all.

Thanks for the links miron...although I think I'll try to clarify this question a little in hopes it will yield what I'm looking for.

Specifically, when I create a DTS connection object:

Dim oPkg As New DTS.Package2
Dim oConn As DTS.Connection

Then initialize two connections and bind them to the package:

' Create connection to text file and assign to package
Set oConn = oPkg.Connections.New("DTSFlatFile")
With oConn
      .ConnectionProperties("Data Source") = "C:\CleanImport.csv"
      .ConnectionProperties("Mode") = 1
      .ConnectionProperties("Row Delimiter") = "\r\n"
      .ConnectionProperties("Column Delimiter") = ","
      .ConnectionProperties("File Format") = 1
      .ConnectionProperties("File Type") = 1
      .ConnectionProperties("Skip Rows") = 0
      .ConnectionProperties("First Row Column Names") = False
End With
oPkg.Connections.Add oConn
Set oConn = Nothing

' Create connection to SQL server and assign to package
Set oConn = oPkg.Connections.New("SQLOLEDB.1")
With oConn
      .ConnectionProperties("Integrated Security") = "SSPI"
      .ConnectionProperties("Persist Security Info") = True
      .ConnectionProperties("Initial Catalog") = "tblImport"
      .ConnectionProperties("Data Source") = "(local)"
      .ConnectionProperties("Application Name") = "DTS  Import/Export Wizard"
      .ID = 2
      .Catalog = "tblImport"
      .DataSource = "(local)"
      .UseTrustedConnection = True
End With
oPkg.Connections.Add oConn
Set oConn = Nothing

...I am setting the properties for two connections; one to a flat text file ("DTSFlatFile"), and another to the SQL server ("SQLOLEDB.1"). Is there a specific section of the SQL Server Online Books, or any other online documentation, that provides a complete reference of possible properties for each connection provider type?

Something that would show that for a flat file, the property of "File Format" has -n- number of possible settings, detailing what each one means...

Hope this helps to clarify...and thanks again.

- IMacNeill
hi ,
yes MS are usually very obscure with this information...
is this any help ...

if you go into BOL and type DTSConn for an index search that may help....
but as you know ther references just seem to be circular in nature and give frustrating small glimpses of what you are often tryinh to find..

DynamicPropertiesTaskSourceType
The DynamicPropertiesTaskSourceType constants are used with the SourceType property to specify the type of source object that provides the value to which a Data Transformation Services (DTS) package object property will be set by the DynamicPropertiesTask object.

Symbol Value Description
DTSDynamicPropertiesSourceType_Constant 4 Source is a constant.
DTSDynamicPropertiesSourceType_DataFile 5 Source is the contents of a data file.
DTSDynamicPropertiesSourceType_EnvironmentVariable 3 Source is the value of a system environment variable.
DTSDynamicPropertiesSourceType_GlobalVariable 2 Source is the value of a Data Transformation Services (DTS) global variable within the package.
DTSDynamicPropertiesSourceType_IniFile 0 Source is the value of a key within an .ini file.
DTSDynamicPropertiesSourceType_Query 1 Source is a value returned by an SQL query.



See Also

SourceType Property

©1988-2002 Microsoft Corporation. All Rights Reserved.

ASKER CERTIFIED SOLUTION
Avatar of miron
miron
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Actually miron, never mind - I think you've allowed me to solve my dilema without needing to know all the settings.

I was not aware that you could save the package as a visual basic file...which negates my need to know the connection properties settings.

Sorry LFS, I gotta dump the points onto miron...

Thanks alot, and sorry for my ignorance.