Welcome to SSQA.net Sign in | Join | Help

SQL Server Storage Engine & Tools (SSQA.net)

SQL Server Tools includes storage engine that includes a complete set of graphical tools and command prompt utilities that allow users, programmers, and administrators. SSMS, SSRS, SSIS & SSAS are most commonly used tools.

November 2007 - Posts

How to get a list of SQL Server 2005 builds that were released after Service Pack 2 was released?
Since the release of SQL Server 2005 Service Pack 2, Microsoft development team has released various builds that are classed as Cumulative Updates. Also we blogged on this site - CumulativeUpdate4 & http://sqlserver-qa.net/blogs/tools/archive/2007/10/16/keep-your-eyes-open-for-cumulative-update-4-for-sql-server-2005-service-pack-2.aspx Read More...
SQL Server Best Practice - AUTO STATISTICS will affect BCP or BULK INSERT performance?
For the first time I wasn't agreeing that AUTO STATISTICS would harm the bulk insert performance! But after an assesment of PERFMON counters during the load and after disabling until the process is finished, there was a significant performance on the Read More...
Best Practices: Upgrading Cluster SQL Server from 2000 to 2005 version - are you worried?
I know it sounds easy to upgrade a SQL Server Cluster environment from 2000 to 2005 version, as easy it mentioned within the Books Online for SQL Server 2005. When I have performed for the first time, my first thought was (do we need that or take out Read More...
What is the significance of .TUF file in Log shipping?
One of the user has been confused to see lot of .TUF file within their server where the log shipping is enabled. Basically this .tuf file is the T ransaction U ndo F ile, which is created when performing log shipping to a server in Standby mode. So if Read More...
Development environment for SQL Server databases, gotchas!
Do you have any criteria for your Development Environment within the SQL Server platform? Do you perform end-to-end testing whenever a new hotfix or service pack needs to be applied on the SQL Server? So think about having seperate Database Development Read More...
Best option to choose when importing data from a text file where heavy inserts and updates are involved!
A specific task of importing data from a text file or any data source where heave inserts and updates are involved is quite common scenario in any SQL Server platform. So when you need to perform such actions on regular basis you need what's the best Read More...
Unable to install SQL Server Express - Error SQL Server service failed to start?
Imagine a simple installation of SQL Server Express 2005 edition fails with an error "SQL Server service failed to start?" Whether it may be on a X64 based operating system or on a simple desktop with XP PRO, as usual you would go with default install Read More...
How to suppress SQLSTATE messages when executing scripts using SQLCMD?
Say you are executing a scheduled job using a batch file and output is stored to a file, then in that output file you will see Warning messages such as SQLSTATE. So how to suppress these messages on the output file. Simply using -i option in SQLCMD as Read More...
SQL Server 2005 ETL process - made simple and easy to learn with SSIS tutorials
Still most of the users in SQL Server 2005 are afraid of using SSIS - SQL Server Integration Services for their ETL process and procedures. I would say the newbie users are in luck to obtain help easily on the web by referring to the blogs and forums/newsgroups Read More...
Internal Tables in SQL Server 2005, what are they for?
By default SQL Server automatically creates the internal tables for Full-text search, XML indexes and Service broker. These are also created when a user query is written poorly that uses tempdb heavily. At they are called internal tables but do not contain Read More...
How to find whether that service pack file is a 32 bit or 64 bit?
Whenever a service pack is released it will be available for 32-bit and 64-bit that also includes for SQL Express 2005 edition too, as it was for MSDE earlier. Since last year (I think) Microsoft Development team has adopted a standard in naming schema Read More...