Forum Replies Created

Viewing 15 posts - 121 through 135 (of 156 total)

  • RE: Learning Oracle

    Here are my thoughts after going from many years SQL Server to an extended project in Oracle:

    I certainly found a lot of things in Oracle quite 'alien' to me and...

  • RE: SSIS Package configuration error & SQL authentication

    ... but its trivial enough to view an environment variable, or anything in the registry for that matter.

    If you are considering having your own special database to hold all package...

  • RE: SSIS Package configuration error & SQL authentication

    Some other things you might want to keep in mind:

    1. You cannot disable windows authentication into a SQL Server database. So clients would have to specifically not want to add...

  • RE: SSIS Package configuration error & SQL authentication

    I guess the thing is that each customer environment is different. For example there are two authentication modes in SQL: A. Windows only and B. SQL + Windows. A SQL...

  • RE: SSIS Package configuration error & SQL authentication

    If you really really want to continue using SQL Server authentication, you can also use

    "Encrypt Sensitive With Password" protection level

    You then need to provide a password at design time (when...

  • RE: SSIS Package configuration error & SQL authentication

    A. Why won't you consider using Windows authentication rather than SQL authentication - this gets around the entire issue as no passwords are saved. There are also many other benefits

    B....

  • RE: SSIS Package configuration error & SQL authentication

    How does your package login to the database to get the config info?

    Does it use SQL Server authentication?

    If so then that password won't be saved either and you won't be...

  • RE: For Each Enumerator

    Let me reiterate

    The error "Error authenticating proxy SYSTEMS\ADM-N7557784, system error: ConnGetProxyPassword" has nothing to do with package encryption levels.

    There is a lot of misunderstanding and misinformation about package encryption levels...

  • RE: For Each Enumerator

    Let me clarify: the error "Error authenticating proxy SYSTEMS\ADM-N7557784, system error: ConnGetProxyPassword" has nothing to do with package security level.

    There certainly are numerous other errors to do with using...

  • RE: For Each Enumerator

    I read this page here in detail (rather than speed reading it like usual)

    http://msdn.microsoft.com/en-us/library/ms189522.aspx

    It implies that when you create your credential, if it is a windows credential, you...

  • RE: DBMail

    Put simply: No IIS is not required. Just a SMTP server of some description is required.

    Your network team should be able to sovle your issue, its just a matter of...

  • RE: Writing the Execute SQL Task Output to package Variable

    I'm pretty sure that the variable value is reset once the package finishes running. So unless you are doing something with the variable during runtime to validate it (like showing...

  • RE: Use of Variables with Execute SQL Task

    Perhaps the declare is confusing it. How about this instead:

    insert into dbo.test_delete_yes (col1)

    values (?)

    failing that, try this:

    insert into dbo.test_delete_yes (col1)

    values (@MyValue)

    .. as different drivers use different placeholders for parameters. See...

  • RE: order of rows during bulk insert

    In the end, the order the data is loaded into a table is usually irrelevant unless a clustered index already exists on the table and you want to take advantage...

  • RE: order of rows during bulk insert

    ... not to argue with Steve Jimmo's point. In answer to 'how do I make sure that the data in the table is ordered as it is loaded', Steve is...

Viewing 15 posts - 121 through 135 (of 156 total)