Viewing 15 posts - 601 through 615 (of 887 total)
CptCrusty1 (5/9/2012)
May 9, 2012 at 3:03 pm
Welsh Corgi (4/13/2012)
When the Task executes the parameter does not have a value.
I did not...
April 13, 2012 at 1:23 pm
Welsh Corgi (4/13/2012)
Martin Schoombee (4/13/2012)
Does your variable have a hard-coded value before execution, or is the value only assigned during execution?
The variables are set during runtime.
I checked the variables when...
April 13, 2012 at 1:04 pm
Does your variable have a hard-coded value before execution, or is the value only assigned during execution?
April 13, 2012 at 11:22 am
+1 on all Jeff's points above. Most people in this forum would lean towards SQL Server, and for good and valid reasons as Jeff has mentioned.
To give another perspective, you...
March 25, 2012 at 1:36 pm
PaulB-TheOneAndOnly (3/25/2012)
Welsh Corgi (3/24/2012)
I just need a clear and concise quick argument as to what they have done is wrong.
Surrogate Keys add a level of abstraction that isolates and protects...
March 25, 2012 at 1:24 pm
SQL Padawan (3/13/2012)
March 13, 2012 at 1:13 pm
FunkyDexter (3/7/2012)
March 7, 2012 at 12:03 pm
Ells (3/7/2012)
"Any variable that is marked as sensitive. The marking of variables is controlled by Integration Services.
Whether Integration Services considers a property sensitive depends on whether the developer of...
March 7, 2012 at 4:42 am
Ells (3/6/2012)
There appears to be two components to the security.
1. The ability to edit the package
2. The security of passwords
I already use config...
March 6, 2012 at 2:14 pm
Ells (3/6/2012)
I have normally worked by myself and when it comes to protectio level for the packages I have opted for Encrypt sensitive with User Key.
However when I open someone...
March 6, 2012 at 10:58 am
I bet you it will 😉
The only thing left to do is for you to implement, test and provide some feedback of your success.
February 24, 2012 at 12:20 pm
Divine Flame (2/24/2012)
IF OBJECT_ID('tempdb..#MyTestTable24Feb2012') IS NOT NULL
BEGIN
DROP TABLE #MyTestTable24Feb2012
END
CREATE TABLE #MyTestTable24Feb2012
(
ID INT IDENTITY(1,1),
Value VARCHAR(20)
)
GO
INSERT INTO #MyTestTable24Feb2012 VALUES ('Param1')
INSERT INTO #MyTestTable24Feb2012 VALUES ('Param2')
INSERT INTO #MyTestTable24Feb2012...
February 24, 2012 at 9:21 am
Divine Flame (2/24/2012)
Is dynamic SQL not an option here?
Not sure...I guess it depends on exactly what you are trying to do. How are you envisioning the use of dynamic sql...
February 24, 2012 at 8:58 am
stephen99999 (2/24/2012)
Most definitely makes sense. At least that way, we would only be generating the City data one time vs. 10 times. I could even still end up using an...
February 24, 2012 at 8:37 am
Viewing 15 posts - 601 through 615 (of 887 total)