Viewing 9 posts - 421 through 430 (of 430 total)
Fouad Samuel Zakka (3/23/2008)
can anyone give me a good site for free ssis vedios not microsoft site with a lot of example.
here's some:
http://www.jumpstarttv.com/Channel.aspx?cat=4a80fb97-198c-4277-ac24-e2cc77d53561
Not free, but cheap:
March 24, 2008 at 8:04 am
I recently had to do something similar and I have always used NOT EXISTS correlated subqueries. I experimented with several methods (sub query, outer join, in ()) and found something...
February 28, 2008 at 8:51 am
If you are using SQL 2005, can you use row_number() instead of the identity column?
Something like:
INSERT@ECFMaster (RowID , ECFID , Effective)
SELECTROW_NUMBER() OVER (ORDER BY ECF_ID,corrected_Effective_Date ),
ECF_ID,
corrected_Effective_Date
FROMEffectivereports.Effectivereports.ECFIndiaMaster
WHEREEmp_ID=@Emp_ID
February 5, 2008 at 9:21 am
You may be able to copy and paste the file spec and create a script to build a table with the required structure.
Then upload the file into a single column...
January 18, 2008 at 8:48 am
Can you dynamically construct a bcp statement?
January 10, 2008 at 8:50 am
Tommy Bollhofer (10/2/2007)
Is there an FW between the MSSQL server and the SMTP relay? If this is the case, can you confirm w/ IT that TCP 25 is open...
January 4, 2008 at 9:40 am
Do you have to update or can you insert ?
INSERT cross_tab_table
select id,
sum(CASE WHEN MM = 1 THEN TotalAmount ELSE 0 END) as JAN_TOTAL,
sum(CASE WHEN MM =...
December 21, 2007 at 8:02 am
I think you need to define relationships between the tables; foreign key/primary keys in the actual database or on the data source view.
November 8, 2007 at 11:17 am
If you are looking for training materials, you might consider looking here:
http://www.learnsqlserver.com/VideoTutorials/
http://www.learnintegrationservices.com/
I havent used any of the videos so I dont know how good they are, but they are...
September 14, 2007 at 7:30 am
Viewing 9 posts - 421 through 430 (of 430 total)