Viewing 15 posts - 8,161 through 8,175 (of 13,876 total)
Sean Lange (8/19/2015)
David Burrows (8/19/2015)
Sean Lange (8/19/2015)
August 19, 2015 at 10:57 am
DamianC (8/19/2015)
I have inherited a few SSIS packages along with some jobs that run them.
I am able to find the packages behind pretty much every SSIS package as they're held...
August 19, 2015 at 7:23 am
The string format YYYYMMDD can be converted directly to datetime.
declare @x nvarchar(20) = '20110905';
declare @y datetime;
set @y = @x;
select @y;
Display formats are, of course, different from storage formats. It...
August 19, 2015 at 6:35 am
karthik82.vk (8/19/2015)
HiThanks for the reply.
SO i need to download it from ftp and then only i have to read it right.
As far as I know.
August 19, 2015 at 5:21 am
karthik82.vk (8/19/2015)
I have some excel files stored in a FTP folder. I want to transfer data from these excel files to my sql table directly from FTP without downloading it...
August 19, 2015 at 4:06 am
Rather than ExecuteSQL, why not use a standard dataflow with suitable source/destination components?
August 19, 2015 at 1:22 am
MikeTomkies (8/18/2015)
August 18, 2015 at 11:09 am
Although it may seem as though the script components offer infinite flexibility given enough code, your problem will be that the input and output columns are defined at design time.
I...
August 18, 2015 at 12:47 am
Sure, use File.move in your script task.
August 18, 2015 at 12:30 am
I presume that you've been keeping an eye on vacancies in the last few months. That should give you an idea of the market. My perception, as a person who...
August 17, 2015 at 11:22 am
GilaMonster (8/17/2015)
Duplicate post. No replies pleaseReplies to http://www.sqlservercentral.com/Forums/Topic1712220-3077-1.aspx
Oops, didn't see this in time.
August 17, 2015 at 6:22 am
Chris.Hubbard4U (8/17/2015)
SET @Date = 2012
DECLARE @Year int
SET @Year = (SELECT DATEPART(yyyy,@Date))
SELECT @Year AS Year
--SELECT *
-- FROM [Orders].[dbo].[Orders] od
-- WHERE .Orderl_Date < @Date;
----WHERE DATEPART(yyyy,@Date)= @Year
----WHERE DATEPART(yyyy,od.Order_Date)=...
August 17, 2015 at 6:21 am
Eirikur Eiriksson (8/17/2015)
ilovedata (8/16/2015)
I...
August 17, 2015 at 12:38 am
s.kandepi3 (8/16/2015)
August 17, 2015 at 12:18 am
Viewing 15 posts - 8,161 through 8,175 (of 13,876 total)