Viewing 15 posts - 7,171 through 7,185 (of 26,490 total)
born2achieve (10/19/2013)
SELECT @fromYear='1913-01-01', @toYear='1998-01-01'
I don't want...
October 20, 2013 at 12:33 am
Not knowing what changes you made to your code I made a simple change, I moved your CTE pdtmstr into a select into statement to populate a temporary table called...
October 19, 2013 at 9:22 am
The problem with giving you any suggestions at this point is we don't know enough to actually provide you with any viable alternatives. We can't see from here what...
October 19, 2013 at 8:06 am
born2achieve (10/19/2013)
wow, thanks a lot lynn and SSC.Hi lynn,
I would like to understand your concept. Is it possible to give me brief explanation about your logic would be great.
Go down...
October 19, 2013 at 7:47 am
Stan Kulp-439977 (10/18/2013)
You can use the open source SSIS SFTP custom task component from this project at CodePlex.comhttp://ssisextensions.codeplex.com/
Here is the 2008 R2 version:
http://ssisextensions.codeplex.com/releases/view/101949
Here is the 2012 version:
Let's make this easier...
October 19, 2013 at 5:52 am
What are you trying to accomplish?
declare @Str1 varchar(10) = 'ABBA';
if @Str1 = reverse( @Str1)
print @Str1 + ' is a Palindrome'
else
print @Str1 + ' is not a Palindrome'
set @Str1 = 'ABC';
if...
October 19, 2013 at 3:42 am
No recursion needed:
declare @Start int = year(getdate()) - 15;
declare @Upto int = year(getdate()) - 100;
with eTally(n) as (select top(@Start - @Upto + 1) ROW_NUMBER() over (order by (select null)) -...
October 19, 2013 at 3:34 am
As long as it is not used in a production environment. The developer edition is meant for use in development, testing, and demonstration of capabilities. Be sure to...
October 17, 2013 at 8:39 am
I've have given you suggestion. Install the Developer Edition on your development/test servers so that you have access to same features as you are using in production.
October 17, 2013 at 7:44 am
In addition to removing the partitions from the table(s) you will also need to drop the partition schemes and partition functions. As long as those exist you will still...
October 17, 2013 at 7:33 am
tony28 (10/17/2013)
Lynn Pettis (10/17/2013)
You really...
October 17, 2013 at 6:11 am
Well, the word doc has the DDL but I am not taking the time to convert you Excel sheet to necessary format to load the tables.
You really need to read...
October 17, 2013 at 4:56 am
bugg (10/17/2013)
Lynn Pettis (10/17/2013)
October 17, 2013 at 4:19 am
Please let me know when you decide to post the DDL (CREATE TABLE) statements, sample data (INSERT INTO) for the tables, and expected results based on given inputs to the...
October 17, 2013 at 4:16 am
Viewing 15 posts - 7,171 through 7,185 (of 26,490 total)