Uploaded August 2012 | Updated September 2026, 2 weeks ago
For more videos on technology, visit Techytube.com
by Jayanth@techytube
A key part of the DBAs day to day activities involve a set of routine tasks that need to be performed in regular intervals. These tasks are essential for the upkeep and smooth performance of the database server as well as to ensure availability. The DBA in any organization is a critical resource and therefore automating these tasks become critical. The maintenance tasks wizard is a key feature available within SQL server that allows to DBA to automate and schedule these tasks in a quick and easy way. The maintenance plans offer the DBA with a significant time saving because it already contains readymade templates that the DBA can use. Compared to some other third party solutions this option works out favourably for those who have basic requirements. Some of the tasks commonly automated include creating database backups, rebuilding or reorganizing indexes etc. These tasks naturally need to be automated and the maintenance itself has options that allow the user to schedule the tasks in SQL Agent.
The maintenance wizard is a powerful tool in the right hands and can easily free up hours from the DBA daily schedule.
For more videos on technology, visit Techytube.com
by Jayanth@techytube
A key part of the DBAs day to day activities involve a set of routine tasks that need to be performed in regular intervals. These tasks are essential for the upkeep and smooth performance of the database server as well as to ensure availability. The DBA in any organization is a critical resource and therefore automating these tasks become critical. The maintenance tasks wizard is a key feature available within SQL server that allows to DBA to automate and schedule these tasks in a quick and easy way. The maintenance plans offer the DBA with a significant time saving because it already contains readymade templates that the DBA can use. Compared to some other third party solutions this option works out favourably for those who have basic requirements. Some of the tasks commonly automated include creating database backups, rebuilding or reorganizing indexes etc. These tasks naturally need to be automated and the maintenance itself has options that allow the user to schedule the tasks in SQL Agent.
The maintenance wizard is a powerful tool in the right hands and can easily free up hours from the DBA daily schedule.


![How to programmatically set images 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 UIImageView class provides a view-based container for displaying images on iOS devices screens.
Most of the times we will set images for our UI controls visually, using the Xcode integrated Interface Builder.
But there may as well situations when we need to do that programmatically (probably we need to dynamically set images depending on different flags or situations). In those cases we first have to created the object that will contain the image:
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(100, 200, 100, 100)];
Than we must set the actual image, by using the image property in case of UIImageView objects:
imageView.image = [UIImage imageNamed:@testImage];
And finally add that UI object to the main view:
[self.view addSubview:imageView];
iOS will take care of all the details, and will correctly load the corresponding image for the specific device.
Note that is now necessary to specify the .png or some other extension for the image. However, you can do that if you want, and youll get the same results.
For more details, please visit Apples Online Documentation at:
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImageView_Class/Reference/Reference.html How to programmatically set images in iOS](https://i.ytimg.com/vi/chdSH0XzQUQ/mqdefault.jpg)







