On CBS.com: U2 helps out during NYC snowstorm
1951 Resources for

microsoft sql server

  • Subscribe to this listing via:
  • RSS
  • Email

TechRepublic Resources

How do I assign permissions to users to see SQL Agent Jobs?
You can give your users rights to check if reports have run or jobs are complete without granting full admin rights. Here's how you can do so by using SQLAgentReaderRole in SQL Server. by Tim Chapman
Tags: Job, Permission, Microsoft SQL Server, SQL, SQLAgentReaderRole, SQLAgentUserRole, SQLAgentOperatorRole, NULL, INT, END, Recruitment & Selection, Advertising & Promotion, Databases, Human Resources, Workforce Management, Marketing, Enterprise Software, Software, Data Management, Tim Chapman
Blog posts 2008-08-06
How do I change the name of my SQL Server?
Did you know that when you change the name of a server that you also have to change the name in SQL Server? It's not that difficult, but if you don't you'll cause problems. Steven S. Warren shows you how. by Steven Warren
Tags: Microsoft SQL Server, Server, Databases, Enterprise Software, Software, Data Management, Steven Warren
Blog posts 2008-08-05
Removing Duplicate Records using SQL Server 2005
Removing duplicate records from tables is sometimes an arduous task, especially if the source table does not contain a primary key field. Here's how you can take advantage of a new SQL Server 2005 feature to remove duplicates quickly and efficiently. by Tim Chapman
Tags: Microsoft SQL Server, Record, Microsoft SQL Server 2005, Table, SalesHistory, SaleDate, SalePrice, SELECT, Productivity, Databases, Enterprise Software, Software, Data Management, Tim Chapman
Blog posts 2008-07-29
Avoiding Cursors with SQL Server 2005
Sometimes cursors are necessary when executing queries in SQL Server, but most of the time they can be avoided entirely. Tim Chapman shows where cursors can traditionally be used, and how you can use features packaged in SQL Server 2005 to avoid them. by Tim Chapman
Tags: Microsoft SQL Server, Cursor, Microsoft SQL Server 2005, Inventory, InventoryDate, InventoryCount, DATEADD, GETDATE, SELECT, BigScreen, PoolTable, Databases, Enterprise Software, Software, Data Management, Tim Chapman
Blog posts 2008-07-21
How do I... Reseed a SQL Server identity column?
Microsoft SQL Server’s identity column generates sequential values for new records using a seed value. Seeding and reseeding an identity column is easy and relatively safe, if you do it correctly. Susan Sales Harkins shows you how it works. by Susan Harkins
Tags: Microsoft SQL Server, Server, Column, Value, Identity, Table, Identity Column, Seed Value, Term Seed, TRUNCATE TABLE, Susan Sales Harkins, Databases, Enterprise Software, Software, Data Management, Susan Harkins
Blog posts 2008-07-15
Create custom looping procedures in SQL Server 2005
Tim Chapman shows how to create system stored procedures that will allow you to loop through and execute statements against any type of object in SQL Server 2005. by Tim Chapman
Tags: Stored Procedure, Microsoft SQL Server, SQL, Microsoft SQL Server 2005, CLR, Exec, N, Tim, System Stored Procedure, NVARCHAR, Databases, Enterprise Software, Software, Data Management, Tim Chapman
Blog posts 2008-07-08
Take advantage of undocumented SQL Server iteration procedures
Here's a look at how you can use two built-in system stored procedures -- sp_msforeachdb and sp_msforeachtable -- to iterate through SQL Server tables and databases. by Tim Chapman
Tags: Microsoft SQL Server, Server, Tim, Storage, Databases, Hardware, Enterprise Software, Software, Data Management, Tim Chapman
Blog posts 2008-07-03
Define custom error messages in SQL Server 2005
By defining custom error messages in SQL Server 2005, you can use the severity of these messages to illicit certain types of behavior from the database engine. Tim Chapman provides ideas on how to use custom error messages in your shop. by Tim Chapman
Tags: Message, Microsoft SQL Server, Microsoft SQL Server 2005, Error, Error Message, Custom Error Message, RAISERROR, CATCH, Tim, Databases, Enterprise Software, Software, Data Management, Tim Chapman
Blog posts 2008-06-30
How do I quickly back up a database in SQL Server 2005?
This quick tip from Steven Warren shows you how to perform a simple backup in SQL Server 2005. by Steven Warren
Tags: Microsoft SQL Server, Microsoft SQL Server 2005, Backups, Storage, Databases, Hardware, Enterprise Software, Software, Data Management, Steven Warren
Blog posts 2008-06-27
What version of SQL Server are you running?
I have run into the situation several times where I had to determine which version of SQL Server 2005 is running including service pack. To accomplish this task, connect to the SQL Server Management Studio and run the following TSQL statement: SELECT SERVERPROPERTY(’productversion’), SERVERPROPERTY (’productlevel’), SERVERPROPERTY (’edition’)...
Tags: Microsoft SQL Server, Server, Databases, Enterprise Software, Software, Data Management, Steven Warren
Blog posts 2008-06-22
Installing System Center Essentials 2007 for midmarket IT shops
For the monitoring, system management, and software deployment side of the house in a mid-sized company, Microsoft offers System Center Essentials 2007. Here we walk through a sample installation and talk about the features. by Scott Lowe
Tags: Microsoft Windows Server, Microsoft SQL Server, Information Technology, Installation, SQL, Microsoft Corp., Microsoft SQL Server 2005, Microsoft IIS Server, SCE 2007, Figure C Prerequisites, Microsoft Windows, Microsoft Windows Server 2003, Servers, Databases, Operating Systems, Software, Hardware, Enterprise Software, Data Management, Scott Lowe
Blog posts 2008-06-17
Convert a string array to tabular data in SQL Server
Many DBAs using SQL Server 2000 or SQL Server 2005 are still not very comfortable parsing XML data to get an array of values. Check out this approach for converting arrays of string values to a dataset in SQL Server 2000 and later. by Tim Chapman
Tags: Microsoft SQL Server, Server, @ParamaterList, Tim, Databases, Enterprise Software, Software, Data Management, Tim Chapman
Blog posts 2008-06-06
How do I... Identify and delete duplicates from SQL Server tables?
Duplicate records in a database are bad. You can't tolerate them. At the very least, they'll produce misleading analysis. At the worst, they'll totally wreck everything. Your application will probably run, but everything it generates will be suspect. You have to find them and delete them or your client might...
Tags: Microsoft SQL Server, Server, Column, Record, Table, Databases, Storage, Enterprise Software, Software, Data Management, Hardware, Susan Harkins
Blog posts 2008-06-03
How do I configure SQL mail in SQL Server 2000?
As a database administrator, I like automation. When it comes to my backups, I like to automate as much as possible. SQL Mail gives me the ability to know when my backups are successful and when they fail. SQL Mail is a component of SQL Server that...
Tags: Microsoft Outlook, Microsoft SQL Server, Microsoft SQL Server 2000, Server, SQL, E-mail, SQL Mail, Programming Languages, Databases, Software Development, Software/Web Development, Enterprise Software, Software, Data Management, Steven Warren
Blog posts 2008-05-21
Audit data using SQL Server 2005's COLUMNS_UPDATED function
Auditing data changes in your production environment is very important, especially if you are dealing with confidential information. Besides tracking the data that has been modified, it is also useful to track the individual field names that have been modified. This information is great for your auditing department, and it...
Tags: Function, Audit, Microsoft SQL Server, Auditing, Trigger, Microsoft SQL Server 2005, COLUMNS_UPDATED, COLUMNS_UPDATED Function, System Function, Tim, Databases, Enterprise Software, Software, Data Management, Tim Chapman
Blog posts 2008-05-13
Convert numbers to fractions using SQL Server
I recently worked on an interesting problem that involved converting a decimal number to a fraction value in SQL Server. At first glance, it seemed reasonably simple, but after digging into the actual code a bit, I realized it was rather challenging. Here's how you can write...
Tags: Fraction, Microsoft SQL Server, Server, VARCHAR, Tim, Databases, Enterprise Software, Software, Data Management, Tim Chapman
Blog posts 2008-04-30
Using SQL Server 2005 Integration Services variables from a Script Task
If you've written a SQL Server 2005 Integration Services SSIS package that uses variables, you may have occasion to manipulate those variables within a Visual Basic script task. Unlike much of SSIS, there's not really a visual editor to help you with this part. In my opinion, the process is...
Tags: Microsoft SQL Server, Microsoft SQL Server 2005 Integration Services, Variable, Microsoft SQL Server 2005, Databases, Enterprise Software, Software, Data Management, Rex Baldazo
Blog posts 2008-04-28
High Availability with SQL Server and Double-Take
I have been doing a lot of work with SQL Server and Disaster Recovery. Many of my clients are particularly fond of Double-Take. In this three part blog series, I will go over the fundamentals of configuring Double-Take. Note: All screen shots are located a the bottom...
Tags: Double-Take, Microsoft SQL Server, High Availability, Replication, Databases, Servers, Enterprise Software, Software, Data Management, Hardware, Steven Warren
Blog posts 2008-04-23
Hiring help at your fingertips
You've all seen IT hiring kits advertised. The ones that include 80 job descriptions for only about a grand? They may be useful if you're the CIO for a company big enough to house 80 IT positions. But for most of us, our personnel needs are a little more focused....
Tags: Hiring, Job, Kit, Microsoft SQL Server, Information Technology, Recruitment & Selection, Strategy, Databases, Enterprise Software, Human Resources, Workforce Management, Management, Software, Data Management, Toni Bowers
Blog posts 2008-04-22
Generate synchronization scripts in SQL Server with TableDiff
DBAs often have to find the differences between lookup tables in different database environments (i.e., development, quality-assurance, staging, and production). The data in these lookup tables are required to be the same across environments to ensure that your testing is accurate. There are a variety of great...
Tags: Microsoft SQL Server, Environment, Server, TableDiff, Tim, Databases, Storage, Enterprise Software, Software, Data Management, Hardware, Tim Chapman
Blog posts 2008-04-22


500 Things Every Technology Professional Needs to Know
Did you know Microsoft's RegClean does not work with XP but you can use shareware to clean your registry? Did you know most wireless access points don't have encryption enabled by default? Did you know there are 500 tidbits of information contained in TechRepublic's 500 Things Every Technology Professional Needs to Know that will help you become a successful IT professional.
Buy Now
IT Help Desk Survival Guide, Third Edition
TechRepublic's IT Help Desk Survival Guide, Third Edition provides tools and recommendations to help you better manage help desk services, improve end-user support, troubleshoot frustrating hardware issues, identify quick fixes to vexing Windows problems, and help users make the most of Microsoft Office 2003.
Buy Now

Introducing SmartPlanet