Uploaded August 2012 | Updated September 2026, 2 weeks ago
For more videos on technology, visit Techytube.com
by Jayanth@techytube
This video shows how to create a simple SSIS package. SSIS or SQL Server integration services are Microsoft SQL Servers ETL tools that come out of the box with SQL Server. It is a shared component and therefore installed only once per server. SSIS is used to created ETL (extract transform and load) workflows as part of loading data or extracting data from the database. However SSIS is much more powerful and can be used for a variety of operation than just a simple extract and load. This video introduces the user to SSIS basics such as control flow and data flow tasks, how to create the project and create a simple workflow to extract data from a source database table into a CSV file. This is the first video in a series that will build on top of each other to provide the user with a comprehensive understanding of the capabilities of SSIS.
The video contains step by step instructions on how create the package along with explanations on what each step means. The user is encouraged to start with this video and progress thru the series to get a better understanding of how to create SSIS pacakges.
For more videos on technology, visit Techytube.com
by Jayanth@techytube
This video shows how to create a simple SSIS package. SSIS or SQL Server integration services are Microsoft SQL Servers ETL tools that come out of the box with SQL Server. It is a shared component and therefore installed only once per server. SSIS is used to created ETL (extract transform and load) workflows as part of loading data or extracting data from the database. However SSIS is much more powerful and can be used for a variety of operation than just a simple extract and load. This video introduces the user to SSIS basics such as control flow and data flow tasks, how to create the project and create a simple workflow to extract data from a source database table into a CSV file. This is the first video in a series that will build on top of each other to provide the user with a comprehensive understanding of the capabilities of SSIS.
The video contains step by step instructions on how create the package along with explanations on what each step means. The user is encouraged to start with this video and progress thru the series to get a better understanding of how to create SSIS pacakges.



![How to customize the NavBar in iOS
Subscribe to our channel here for notifications on new video trainings. For more videos on technology, visit our website at http://www.techytube.com.
By pavel@techytube, for more from this author visit:
http://www.techytube.com/author/pavel
The NavBar or the navigation bar is the top side view that appears by default over our main view if we have a navigation controller presenting the corresponding view controller.
Its dimensions for iPhone and iPod touch are 320 x 44, so if we want to set custom background images for that, we need 2 images: one normal of 320 x 44 pixels, and the other one for Retina Display, of 640 x 88 pixels.
iOS provides us 4 default options for customising the NavBar, and we do that by writing the following line of code:
self.navigationController.navigationBar.barStyle = UIBarStyleDefault;
The barStyle property can be set to one of 4 values, which are:
UIBarStyleDefault,
UIBarStyleBlack,
UIBarStyleBlackOpaque,
UIBarStyleBlackTranslucent.
Starting with iOS 5, it is very easy to set a background image for the NavBar in this way:
UIImage *navBarImage = [UIImage imageNamed:@nav-bar-image];
[[UINavigationBar appearance] setBackgroundImage:navBarImage forBarMetrics:UIBarMetricsDefault]; How to customize the NavBar in iOS](https://i.ytimg.com/vi/kjQ4qVGHr9w/mqdefault.jpg)






