Viewing 15 posts - 616 through 630 (of 893 total)
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
stephen99999 (2/24/2012)
Would the SSIS for-each loop be faster (theoretically) ?
as for the 2nd sproc (xsp_run_sproc2), it accepts the parameter @value, gathers data from various tables based on @value,...
February 24, 2012 at 8:29 am
It's a little difficult to say, because we don't know exactly what that second proc is doing...but my somewhat generic advice would be the following:
I would re-write the second proc...
February 24, 2012 at 8:08 am
Griffster (2/22/2012)
February 22, 2012 at 11:00 am
imho 1000 is way too low...depending on available resources, it should be closer to 50,000 or even 100,000.
You will have to play around with these to get it right. Look...
February 22, 2012 at 8:28 am
HowardW (2/22/2012)
Also, it might be worth looking at...
February 22, 2012 at 8:18 am
Griffster (2/22/2012)
February 22, 2012 at 8:08 am
Griffster (2/22/2012)
February 22, 2012 at 7:12 am
My advice in this situation would be the following:
1. Make sure the delay is not at the source. To test this, remove the pipe between your source and destination and...
February 22, 2012 at 6:38 am
dshuler99 (2/21/2012)
This is my first post here at SQLServerCentral. I am trying to automate the backup of several files daily. After completing several tutorials, I have run into...
February 21, 2012 at 12:45 pm
Viewing 15 posts - 616 through 630 (of 893 total)