This month's discount Comprehensive Database Performance Health Check · Testimonials
SQLAuthority with Pinal Dave
Home
  • Consulting
    • Health Check
  • Free Videos
  • All Articles
    • AI
    • SQL Performance
    • SQL Tips and Tricks
    • Interview Questions and Answers
    • SQL Puzzle
    • SQL Video
    • SQLAuthority News
    • Personal
  • Books
  • Consulting
SQL SERVER - Fix : Error 1702 CREATE TABLE failed because column in table exceeds the maximum of columns

SQL SERVER – Fix : Error 1702 CREATE TABLE failed because column in table exceeds the maximum of columns

April 12, 2007
Pinal Dave
SQL Tips and Tricks
Best Practices, SQL Error Messages, SQL Server DBCC

Error 1702, CREATE TABLE failed, happens when a table goes past the 1024 column limit in SQL Server 2000. The fix is to cut the columns to 1,024 or fewer.

Read More
SQL SERVER - Fix : Error: 3902, Severity: 16; State: 1 : The COMMIT TRANSACTION request has no corresponding BEGIN TRANSACTION.

SQL SERVER – Fix : Error: 3902, Severity: 16; State: 1 : The COMMIT TRANSACTION request has no corresponding BEGIN TRANSACTION.

April 12, 2007
Pinal Dave
SQL Tips and Tricks
SQL Error Messages, SQL Scripts, SQL Server Security, SQL Transactions

An SSIS package fails with Error 3902: the COMMIT TRANSACTION request has no corresponding BEGIN TRANSACTION. Two fixes, one is RetainSameConnection set to true.

Read More
64-bit

SQL SERVER – Running 64 bit SQL SERVER 2005 on 32 bit Operating System

April 12, 2007
Pinal Dave
SQL Tips and Tricks
SQL Server, SQL Server Security

Few days ago, I have received email from users asking question :How to run 64 bit SQL SERVER 2005 on 32 bit operating system?

Read More
SQL SERVER - UDF - User Defined Function to Extract Only Numbers From String

SQL SERVER – UDF – User Defined Function to Extract Only Numbers From String

April 11, 2007
Pinal Dave
SQL Tips and Tricks
SQL Function, SQL Scripts, SQL String

A simple UDF, ExtractInteger, to extract only numbers from string input. I test it with a phone number that also has letters in it.

Read More
SQL SERVER - 2005 - Explanation of TRY...CATCH and ERROR Handling

SQL SERVER – 2005 – Explanation of TRY…CATCH and ERROR Handling

April 11, 2007
Pinal Dave
SQL Performance
SQL Error Messages, SQL Scripts, SQL Server Security

SQL Server 2005 brings TRY…CATCH for error handling, so you no longer check @@ERROR after every statement. Here is how the TRY and CATCH blocks work.

Read More
SQL SERVER - 2005 - Silent Installation - Unattended Installation

SQL SERVER – 2005 – Silent Installation – Unattended Installation

April 10, 2007
Pinal Dave
SQL Tips and Tricks
SQL Scripts, SQL Server Security

Silent installation of SQL Server 2005 in two steps: an .ini file built from template.ini, then setup.exe with /qn or /qb. Plus tips to test it.

Read More
SQL SERVER - SP Performance Improvement without changing T-SQL

SQL SERVER – SP Performance Improvement without changing T-SQL

April 10, 2007
Pinal Dave
SQL Performance
SQL Stored Procedure

Two easy ways to improve SP performance without changing T-SQL: do not prefix stored procedures with sp_, and call them by the fully qualified dbo name.

Read More
Previous 1 … 828 829 830 831 832 833 834 … 839 Next
  • Books
  • Testimonials
  • Privacy Policy

© 2006 – 2026 All rights reserved. pinal @ SQLAuthority.com