By Louise Lahm, on February 15th, 2012%
Exactly when Microsoft changed the setting, I could not understand exactly – when reinstalling a named SQL Server 2008 R2 Express instance was the effect on each case:
You try to connect from a client using SQL Server (native) to the client to the server and receives the error message:
Connection fail:
SQLState: 08001
SQL Server ERROR: 17
{Microsoft} {ODBC SQL . . . → Read More: SQL 2008 Hosting :: Why I Cant Connect to SQL 2008 R2?
By Jose Sharp, on February 13th, 2012%
This post discusses about configuring different user account to JOB running in SQL Server 2008. By default SQL JOBs runs under service account that you have configured while installing the SQL Server. You can follow the below steps to change the user account that running under JOB
1. Open SQL Server Management Studio and expand the SQL . . . → Read More: SQL 2008 Hosting :: Running SQL Server JOBS with different user accounts in SQL 2008
By Louise Lahm, on January 6th, 2012%
A stored procedure is a group of sql statements that has been created and stored in the database. Stored procedure will accept input parameters so that a single procedure can be used over the network by several clients using different input data. Stored procedure will reduce network traffic and increase the performance. If we modify stored . . . → Read More: SQL 2008 Hosting :: Stored Procedure in SQL Server and the Advantages
By Louise Lahm, on December 7th, 2011%
SQL Server use ASPState database to store the session information for SQL Server Session mode. ASPState database having two tables ASPStateTempApplications and ASPStateTempSessions. ASPStateTempApplications table contains Application ID and Application Name which is specific to each and every application which are using SQL Server session mode on the particular database. ASPStateTempSessions table having numbers of fields . . . → Read More: SQL 2008 Hosting :: How to Calculate Session Data Size for SQL Server Session Mode?
By Jose Sharp, on November 23rd, 2011%
So, yesterday I was trying to resolve one issue that led to another, pretty much a daily occurrence right? This SQL issue was littering the application logs every minute with Event ID 18456, as you can see in the screenshot.
Opening up the individual error showed the following (note my spray paint skills): Login failed for user . . . → Read More: SQL 2008 Hosting :: Cleaning up the Error Logs – SQL Error 18456
By Louise Lahm, on November 7th, 2011%
Today in this article I’m going to explain yet another new tool in Visual Studio 2010 which is nothing but the DATA COMPARISION tool. This tool is of extreme use for the developers to compare data in 2 tables in different environment (in real time say a reference table data should be compared from Development to . . . → Read More: SQL Server Hosting :: SQL Server Data Comparison Tool in Visual Studio 2010
By Louise Lahm, on October 20th, 2011%
Physical Address Extension (PAE) allows you to use up to 64 GB of physical memory depending on operating system you use. All existing 32 bit processors supports this extension of memory. PAE mode requires an Intel Architecture processor and more than 4GB . . . → Read More: SQL 2008 Hosting :: Using Memory Beyond 4GB in SQL Server
By Jose Sharp, on October 14th, 2011%
By Jose Sharp, on October 5th, 2011%
Here I will explain how to write query to return output parameters in SQL Server. In some situations we need to return the output value after execution of our query here I will explain with simple user registration here I am returning one out parameter if the query executes successfully else I am returning another output . . . → Read More: SQL 2008 Hosting :: How to write SQL Query to return output parameters
By Jose Sharp, on August 9th, 2011%
If you are trying to connect a client computer running windows vista or windows server 2008 to a named instance of sql server. In this scenario the connection may fail. If you are using windows data access component 6.0 to connect to named instance of sql server, you will receive the following error message.
[DBNETLIB]Specified SQL server . . . → Read More: SQL 2008 Hosting :: “Specified SQL server not found” or “Error Locating Server/Instance Specified” On windows vista when connecting to sql server in remote server