Tag: sql server

Community

DBCC Commands

(Michael Otey) Using Database Consistency Checker (DBCC) commands can give you valuable insight into what’s going on inside your SQL Server system. DBCC commands have powerful documented functions and many undocumented capabilities that you might not know about. You can learn more about undocumented

Community

SQL Server: Blocking Problems

(Kevin Kline and Baya Pavliashvili) SQL Server transactions are extremely powerful—they provide a way to incorporate business rules into your applications and protect data integrity. Behind the scenes, the transactions are implemented through the SQL Server’s locking mechanism, which we discussed in

Community

Basics of C2 Auditing

(Dinesh Asanka) What ever the system that we are taking about, whether it is an ERP system or CRM tool or any database system auditing has become essential part of that system.. Auditing will allow you to: –Detect the misuse and prevent it being happened again. –Take legal actions against t

Community

Execute a package from a package

(Darren Green) You can use a parent or master package to control the execution of one or more child packages. This is often used in a looping scenario, or when there are a number of individual packages that make up a process. This can be achieved very simply in SQL Server 2000 by using the Execu

Community

Take Control of Joins

(Itzik Ben-Gan) When you write a multitable join that uses inner joins exclusively (or for that matter, only cross joins or only full outer joins), the table order you specify in the FROM clause doesn’t affect the query result. However, when you’re using left or right outer joins, if you revise the