Viewing 15 posts - 1 through 15 (of 42 total)
I am thinking they will be in TEMPDB
January 1, 2013 at 10:20 pm
I din't needed the dataconversion transformation either. But I was initially verifying with just the excel source and dataconversion and added a data viewer to see if the data is...
December 29, 2012 at 9:09 am
Yes the table was loaded with all the data that is in excel. Try to create a new package and see if it works
December 29, 2012 at 8:33 am
I was able to load the data as it is in EXCEL. All the columns are loaded. I do not see any issue. I have sql server 2008 R2 on...
December 28, 2012 at 11:07 pm
Here is the code
if OBJECT_ID('tempdb..#test') is not null drop table #test
go
create table #test
( column1 varchar(100),
column2 varchar(100),
column3 varchar(100)
)
go
insert into #test
select 'red' as Column1, ...
December 28, 2012 at 9:59 pm
As Scott suggested , differential backup and a periodic full backup is a lot better solution to your problem. But then I was just giving you out different solutions out...
December 28, 2012 at 7:15 pm
My solution handles too
December 28, 2012 at 8:21 am
You may write the expression something like this in the conditional split
(DT_DBTIMESTAMP)(event_d + " " + event_t) >= DATEADD("HH",-73,GETDATE()) && (DT_DBTIMESTAMP)(event_d + " " + event_t) <= DATEADD("HH",8,(DT_DBDATE)(GETDATE()))
December 27, 2012 at 10:33 pm
I would run the same process, that loads data into production, on the lower environments. For example if you have a SSIS package which loads data into production. Create a...
December 27, 2012 at 10:18 am
You may use a conditional split transformation in the Data flow tab. You can write any number of conditions in this transformation and each condition have a respective output. So...
December 26, 2012 at 9:37 pm
You can use Replication.
December 26, 2012 at 3:50 pm
I solved by running the bids as..."run as administrator". It worked.
February 4, 2012 at 10:31 pm
I just started learning VB. this example is from book "Microsoft VB step by step".
March 29, 2011 at 10:06 am
Viewing 15 posts - 1 through 15 (of 42 total)