Viewing 15 posts - 121 through 135 (of 156 total)
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...
October 14, 2010 at 12:33 am
... 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...
September 29, 2010 at 4:15 pm
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...
September 29, 2010 at 4:38 am
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...
September 29, 2010 at 4:29 am
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...
September 29, 2010 at 3:04 am
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....
September 29, 2010 at 3:00 am
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...
September 29, 2010 at 2:25 am
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...
September 15, 2010 at 6:06 pm
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...
September 2, 2010 at 11:07 pm
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...
August 31, 2010 at 8:35 pm
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...
July 7, 2010 at 3:36 am
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...
June 27, 2010 at 5:25 am
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...
June 27, 2010 at 5:18 am
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...
June 23, 2010 at 5:41 pm
... 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...
June 22, 2010 at 6:51 pm
Viewing 15 posts - 121 through 135 (of 156 total)