Subscribe to Feed

Archive for May, 2009

Problem Steps Recorder is a cool Windows 7 tool that can record your actions as a series of images.  Refer earlier post here for more information about the tool. In this post I will explain how to use this tool from a command line window (cmd.exe).
 

psr.exe [/start |/stop][/output <fullfilepath>] [/sc (0|1)] [/maxsc <value>]
[...]

There is cool hidden feature/tool in Windows 7 that can record your actions as screen shots and save it as .MHT file. This is very helpful if your trying to do a blog post and record series of screen shots.
The tool: PSR.exe (Problem Steps Recorder: Record Steps to reproduce problem)

How to Launch it
Just click [...]

Visual Studio 2010 and .NET Framework 4 Beta 1 : Release Visual Studio 2010 and .NET Framework 4 focuses on the core pillars of developer experience, support for the latest platforms, targeted experiences for specific application types, and core architecture improvements.
Visual Studio 2010 and .NET Framework 4 Training Kit - May [...]

The 2007 Microsoft Office System - Learning Portal Clinic 5046: Inside Look at Building and Developing Solutions with Microsoft Office SharePoint Servers 2007 Get help incorporating Microsoft Office SharePoint Server 2007 into your portal-based solution development and integrating it into your existing enterprise application infrastructure. This e-learning [...]

Office SharePoint Server 2007 Training: (Standalone Edition) The Microsoft Office SharePoint Server 2007 Training Standalone Edition is designed to help you learn how to use the features of Microsoft Office SharePoint Server. The Training topics lead you step-by-step through beginning to advanced features, including Collaboration, Business Processes and Forms, Portals and Personalization, [...]

You should be able to Delete data from all tables in a SQL server database by running the following TSQL command.
EXEC sp_MSforeachtable @command1 = ‘DELETE FROM ?’
Note: You might see some errors if there are foreign key constraints in your database. Just keep executing the above command until you see no errors and you should [...]

You can delete all views from a database in SQL server by executing below TSQL statements.
 
DECLARE @viewName varchar(500)
DECLARE cur CURSOR
FOR SELECT [name] FROM sys.objects WHERE type = ‘v’
OPEN cur

FETCH NEXT FROM cur INTO @viewName
[...]

To delete all tables from a sql server database you can use the following TSQL command.
EXEC sp_MSforeachtable @command1 = ‘DROP TABLE ?’
Note: Running above command might throw errors if you have foreign constraints defined on some tables. Just click ok on the error dialog box and rerun the command. Keep executing this command until there [...]

Here is a way to delete all stored procedures from an SQL Server database
DECLARE @procedureName varchar(500)
DECLARE cur CURSOR
FOR SELECT [name] FROM sys.objects WHERE type = ‘p’
OPEN cur

FETCH NEXT FROM cur INTO @procedureName
[...]

If you receive an error similar to Unknown server tag ‘asp:ListView‘  when hosting your website using Asp.net web hosting, this most likely is because there is an update being made to .Net Framework on the web server, or .Net framework on the web server where your web site is hosted is messed up. You should [...]


 

 

Subscribe to Feed

Categories

Links

Dev Jobs