Uploaded October 2012 | Updated September 2026, 2 weeks ago
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 jayanth.kurup@techytube, for more from this author visit:
techytube.com/author/jayanth.kurup
This video discusses what MS SQL Server profiler is and how to set it up and use it. Profiler is a tool that has been around for some time and yet remains one of the most powerful features available in SQL Server for the DBA. It is used frequently to investigate issues and identify bottlenecks in the database operations. This introduction serves as a starting point to working with SQL server profiler and how to configure a trace file and monitor events that happen on a specific database using column filters and additional events. Every DBA is expected to know how to configure and use MS SQL Server profiler and what scenarios to use it in so video is meant to serve as a starting point to understanding profiler. We explore how to start profiler, setup a basic trace using the built in template and then customize the template to capture additional information and then filter the criteria for what is being captured.
This video is the first of a series on how to work with MS SQL Server Profiler.
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 jayanth.kurup@techytube, for more from this author visit:
techytube.com/author/jayanth.kurup
This video discusses what MS SQL Server profiler is and how to set it up and use it. Profiler is a tool that has been around for some time and yet remains one of the most powerful features available in SQL Server for the DBA. It is used frequently to investigate issues and identify bottlenecks in the database operations. This introduction serves as a starting point to working with SQL server profiler and how to configure a trace file and monitor events that happen on a specific database using column filters and additional events. Every DBA is expected to know how to configure and use MS SQL Server profiler and what scenarios to use it in so video is meant to serve as a starting point to understanding profiler. We explore how to start profiler, setup a basic trace using the built in template and then customize the template to capture additional information and then filter the criteria for what is being captured.
This video is the first of a series on how to work with MS SQL Server Profiler.






![How to create views programmatically 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
A view is any object of the UIView class or of one of its subclasses. That means any UI control, such as buttons, sliders, steppers etc. is a view.
Usually, when creating view that should be present on our .xib or .storyboard files, we do that visually, using Interface Builder, which is integrated in Xcode 4.
However, some situations may appear when we need do add different views dynamically on our screens, and for doing that, we need to do that programatically (Which basically has the same effects).
To create a view, we write the following code:
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 100)];
We can also set the views properties, for example the background colour:
view.backgroundColor = [UIColor redColor];
And finally we need to add that to our main view:
[self.view addSubview:view];
We can do the same thing for other classes that inherit from UIView, for example UIButton:
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTitle:@Click me forState:UIControlStateNormal];
button.frame = CGRectMake(0, 300, 200, 60);
[self.view addSubview:button];
For more details, please visit Apples Online Documentation at:
http://developer.apple.com/library/ios/#documentation/uikit/reference/uiview_class/uiview/uiview.html How to create views programmatically in iOS](https://i.ytimg.com/vi/pGsgnWqEMWQ/mqdefault.jpg)



