Viewing 15 posts - 1 through 15 (of 16 total)
Thank you, Sue. Had heard about the deprecating story earlier and was surprised :). Good they are retaining it even if its a newer version.
October 17, 2017 at 10:09 pm
October 17, 2017 at 7:06 pm
August 30, 2017 at 7:43 am
You may want to use this combination <fast forward, local>
Reference I read few years earlier: https://sqlperformance.com/2012/09/t-sql-queries/cursor-options
August 29, 2017 at 11:27 pm
thanks. But I wouldn't consider this incremental. May be "individual package deployment".
Incremental would be something where we (or the program) can identified the diff and deploy only the packages...
August 29, 2017 at 5:15 pm
reelnoncents - Wednesday, May 10, 2017 10:28 AMPardon my ignorance, but what is SSIS farm architecture?
In our case, it's basically using multiple...
May 10, 2017 at 10:41 am
STATS_DATE ( i.object_id , i.index_id ) as IndexCreatedDate
STATS_DATE can't be the IndexCreate date; Per BOL, "Returns the date of the most recent update for statistics on a table or...
May 9, 2017 at 10:22 am
Thanks guys.
July 1, 2015 at 11:40 pm
Thanks Howard
Its just that a business logic is written in the current SP based on the output of the patindex. If I have to rewrite the code based on corrected...
August 31, 2011 at 8:28 am
Yes...
For now, these are the only 2 work arounds i see.
Thanks
Sandeep
January 11, 2011 at 9:22 pm
Hi,
Few examples for sensitive data:
1. Database connection string (including user name/pw)
2. Server credentials for SMTP/ FTP etc
Ideally, we will be using windows authentication for database connection string; but not all...
January 11, 2011 at 8:18 am
Thanks....
I have done the first part i.e, using a data flow task and getting the list of values (a set of Contract Keys in my example).
I am not quite...
November 20, 2010 at 11:54 pm
Thanks John and Amit..
That helped a lot...
August 23, 2010 at 4:09 am
Thanks John...
I am using SQL 2000.
Here is the script which will generate sample source resultset:
IF OBJECT_ID('Hotel') IS NOT NULL
DROP TABLE Hotel
CREATE TABLE dbo.Hotel(
hotel_id INT,
hotel_name VARCHAR(100),
facilities VARCHAR(100)
)
GO
INSERT INTO Hotel
SELECT 456,'BASIL...
August 23, 2010 at 2:15 am
Viewing 15 posts - 1 through 15 (of 16 total)