Viewing 15 posts - 886 through 900 (of 926 total)
brettk (10/31/2013)
Yes, that is the dream. 🙂
+1
great article, thanks for the share.
one more point to mention is if you updating too many rows at a time.
SQL Server creates...
November 1, 2013 at 12:17 am
excellent article i must say ... detailed enough for ppl who design database with closed eyes 😎
good work !!
October 30, 2013 at 7:21 am
let me put it this way:
Scenario:
Host 1 - SQL Server 2012 DB Engine and Agent.
Host 2 - SSIS 2012
Package would execute successfully if executed from Host 2. If executed from...
October 29, 2013 at 11:39 pm
do check if SSIS components installed on Host.
October 29, 2013 at 7:31 am
SSIS will assign "DT_DBTIMESTAMP" for a DateTime data type.
so if in the Destination Table you u have a DateTime column then it will map with and data will be...
October 29, 2013 at 6:47 am
sqlnaive (10/29/2013)
Easy but good question (had some harsh experience in the start of my career). 🙂
+1
October 29, 2013 at 6:28 am
dwain.c (10/27/2013)
guy.stephens (10/27/2013)
October 28, 2013 at 2:09 am
in script manager you can do this:
datecol.ToString("yyyyMMdd");
Please note Format can change.
you need to generate a new column from the script manager and use that column in the ssis...
October 28, 2013 at 2:04 am
Very good question ...
very handy to understand the working nested transaction and SAVE point
October 28, 2013 at 1:57 am
u r welcome
October 21, 2013 at 5:30 am
Select a.FirstName,a.LastName,a.ArrivalDate,a.DepartureDate,a.CreatedOn,b.ProfileId,b.ReservationStatus,b.MarketSegmentCode,b.Nights,b.GuestCount,c.AdultCount, c.ChildCount, c.SourceCode
From GuestNameInfo a
JOIN GuestStaySummary b on a.ReservationStayID = b.ReservationStayID
JOIN ResrvationStay c on c.ReservationStayID = b.ReservationStayID
hope it helps
October 21, 2013 at 4:55 am
Mike Morin-219647 (7/23/2009)
October 21, 2013 at 4:48 am
Viewing 15 posts - 886 through 900 (of 926 total)