Tagged Questions

Use this tag for questions specific to the 2008 R2 version of Microsoft's SQL Server.

learn more… | top users | synonyms

14
votes
4answers
272 views

What do you do to make sure a new index does not slow down queries?

When we add or remove a new index to speed up something, we may end up slowing down something else. To protect against such cases, after creating a new index I am doing the following steps: start ...
13
votes
4answers
9k views

Error: Failed to generate a user instance of SQL Server

I'm trying to connect to an MDF. I've even gone to the lengths of re-installing sql server express entirely (it is now the only flavor of SQL installed on my box, where previously I had 05 dev and ...
12
votes
7answers
728 views

Fastest way to find string by substring in SQL?

I have huge table with 2 columns: Id and Title. Id is bigint and I'm free to choose type of Title column: varchar, char, text, whatever. Column Title contains random text strings like "abcdefg", "q", ...
11
votes
5answers
2k views

SQLCLR using the wrong version of the .NET Framework

During a recent restart of our development server the SQL Server started using .NET 4.0 for the SQLCLR. This means that nothing using the CLR in SQL works, or at least that's my understanding by ...
9
votes
1answer
276 views

SQL Management Studio 2008 R2 “wrongly” reconnects after connection loss

up to a while ago I used SQL2k5 exclusively but recently got updated to 2008 R2. Apart from the obvious changes in Mgmt Studio, there is one quirk that's starting to be very annoying : each time a ...
8
votes
3answers
103 views

Why are the performances of these 2 queries so different?

I have a stored proc that searches for products (250,000 rows) using a full text index. The stored proc takes a parameter that is the full text search condition. This parameter can be null, so I ...
8
votes
1answer
177 views

select top 10 … and select top 30 follows different execution plan

During query optimization I encounted a strange behaviour of sql server (Sql Server 2008 R2 Enterprise). I created several indexes on tables, as well as some indexed views. I have two queries, for ...
8
votes
1answer
2k views

ado.net transaction.commit throws semaphorefullexception

When I commit my transaction, i'm getting: System.Threading.SemaphoreFullException: Adding the specified count to the semaphore would cause it to exceed its maximum count. at ...
8
votes
2answers
4k views

In SQL Server 2008 R2 script data missing on Script Wizard

In my SQL Server 2008 R2 Script Option Screen of Script Wizard under section Table/View Options Look I find Script Data row and want to turn the option to True but I fail. I don't find any script ...
7
votes
2answers
161 views

Is this a bug in MERGE, failing to implement FOREIGN KEY properly?

I am using the following tables to implement subtypes, which is a very common approach: CREATE TABLE dbo.Vehicles( ID INT NOT NULL, [Type] VARCHAR(5) NOT NULL, CONSTRAINT Vehicles_PK ...
7
votes
1answer
218 views

Sql Server 2008 R2 DC Inserts Performance Change

I have noticed an interesting performance change that happens around 1,5 million entered values. Can someone give me a good explanation why this is happening? Table is very simple. It is consisted of ...
7
votes
3answers
150 views

What's the best way send email from the database in SQL Server 2008 R2?

Migrating a legacy database from SQL Server 2000, and there are a few scheduled tasks that use SP_OACreate & CDOSYS to send emails to an open SMTP relay as in this KB article: ...
7
votes
3answers
2k views

EF Code First CTP 5 and SQL SErver 2008 R2

I can't seem to get the EF Code First to work with SQL Server 2008 R2. The error I am getting is "Invalid object name 'dbo.Movies'." It is not creating the table automatically. My connection string: ...
6
votes
2answers
91 views

How can I run multiple versions of my application against the same database?

Backround: I have multiple versions of my application running in my production environment. Depending on the user account that's used, the user will have access to a different version of the software. ...
6
votes
1answer
44 views

T-SQL Is it possible to do an Update / Insert with a single fast operation

Let's say I have a table and I want to insert a row. The new row's key may already match an existing row's key in the table, in which case I want to update the existing row. Or, it may not exist in ...
6
votes
1answer
345 views

Convert hyper-massive query from SQL Server to MySQL - Problems with a JOIN

I have a query that works fine in SQL Server 2008 but when I try to use it with MySQL, it seems to be problems with the JOIN. The first error is You have an error in your SQL syntax; check the ...
6
votes
9answers
398 views

Password mismatch while logging to sql server

Alright, I have a classic asp application and I have a connection string to try to connect to db. MY connection string looks as follows: Provider=SQLOLEDB;Data Source=MYPC\MSSQLSERVER;Initial ...
6
votes
2answers
84 views

Nested Transactions in .NET

How can I perform the equivalent of this? My understanding is that this is impossible with TransactionScopes but I'd like to accomplish the equivalent in some other way: Business Logic class: public ...
6
votes
3answers
103 views

The misbehaving Identity

Execute the following script that creates and populates a table into your dev database. SET NOCOUNT ON Drop Table dbo.Region GO CREATE TABLE dbo.Region( RegionId int ...
6
votes
4answers
229 views

Change in query plan and execution time with TOP and ESCAPE

One of the query (given below) is taking 90+ seconds to execute. It returns ~500 rows from a rather large table LogMessage. If ESCAPE N'~' is removed from the query it executes within few seconds. ...
6
votes
3answers
245 views

Why does the Execution Plan include a user-defined function call for a computed column that is persisted?

I have a table with 2 computed columns, both of which has "Is Persisted" set to true. However, when using them in a query the Execution Plan shows the UDF used to compute the columns as part of the ...
6
votes
1answer
2k views

Is there a way to suppress SQL03006 error in VS2010 database project?

First of all, I know that the error I am getting can be resolved by creating reference project (of type Database Server) and then referencing it in my Database project... However, I find this to be ...
6
votes
3answers
504 views

'insert into' with array

I'm wondering if there's a way to use 'insert into' on a list of values. I'm trying to do this: insert into tblMyTable (Col1, Col2, Col3) values('value1', value2, 'value3') So, what I'm ...
6
votes
3answers
6k views

Upgrading from SQL Server 2008 R2 Express to SQL Server 2008 R2 Enterprise

When I tried upgrading from SQL Server 2008 R2 Express to SQL Server 2008 R2 Enterprise, it passed all tests and then it failed at step "Select features", saying the following error: There are no ...
6
votes
1answer
656 views

OptimisticConcurrencyException — SQL 2008 R2 Instead of Insert Trigger with Entity Framework

Using a SQL 2008 R2 November release database and a .net 4.0 Beta 2 Azure worker role application. The worker role collects data and inserts it into a single SQL table with one identity column. ...
5
votes
2answers
38 views

How can I import into a join table in a set based statement?

I am importing data from a flat file into a normalized table structure. I am currently using cursors to do inserts into related tables so I have the primary keys to insert into the join table. Can I ...
5
votes
3answers
54 views

Run SQL Scripts from C# application across domains

To run sql script files from my C# application, I referred this. http://social.msdn.microsoft.com/Forums/en/adodotnetdataproviders/thread/43e8bc3a-1132-453b-b950-09427e970f31 it works perfectly when ...
5
votes
2answers
73 views

What is the best way to push inserted data out of SQL Server to an application?

I would like to use some mechanism within SQL Server (or one of its services) to push change messages out (via UDP, for example, but TCP is OK, too) when rows get inserted into a table. I would like ...
5
votes
2answers
868 views

getting error “Could not find stored procedure 'sp_OACreate'” in Sql Azure

When I try to execute the sp_OACreate stored procedure in SQL azure database. I am getting following error: Could not find stored procedure 'sp_OACreate' in SQL Azure. Can anyone tell me how to ...
5
votes
4answers
332 views

Adding Foreign Key constraint sucks up memory and causes paging

I'm having a lot of issues adding a simple foreign key constraint to a newly created empty table. Reference table is a tiny one with less than 40 records in it, but it gets referenced quite a bit. ...
5
votes
2answers
873 views

Deadlock issue in SQL Server 2008 R2 (.Net 2.0 Application)

The Sql Server 2008 R2 instance in question is a heavy load OLTP production server. The deadlock issue came up a few days back and is still unresolved. We received the Xml deadlock report that listed ...
5
votes
2answers
119 views

Database reads varying dramatically on a query with indexes

I have a query that has appropriate indexes and is shown in the query plan with an estimated subtree cost of circa 1.5. The plan shows an Index Seek, followed by Key Lookup - which is fine for a ...
5
votes
2answers
4k views

Differences Between SQL Server 2008 and SQL Server 2008 R2 from a developer's POV

I am setting up my development machine and I am wondering if I should install SQL Server 2008 R2 (for Developers) or SQL Server 2008 (for Developers) on my machine. All of the databases that I work ...
5
votes
1answer
115 views

What is new for developers in SQL Server 2008 R2

Today was released SQL Server 2008 R2. Was trying to find what is new (from the developer perspective), but the MS sites has all the PR blah, blah, blah. There is something new to be aware?
4
votes
1answer
62 views

An invalid floating point operation occurred. SQL Server 2008

I have weird problem with this code: if I run it like shown below I get error: An invalid floating point operation occurred. But if I change parameter @Longitude to -98.508730 (notice only last ...
4
votes
1answer
62 views

Keep getting 'cursor is READ-ONLY'

My code seems pretty forward. I want to update a specific field with a unique counter, not equal {1,2,3,...}. I keep getting the error 'The cursor is READ ONLY.' Also: is there a simpler way? ...
4
votes
3answers
33 views

SQL Server VIEW Performance

If I have a VIEW with a bunch of INNER JOINs but I query against that VIEW SELECTing only columns that come from the main table, will SQL Server ignore the unnecessary joins in the VIEW while ...
4
votes
2answers
111 views

Are table variables thread safe on sql server 2008 r2?

For example, I am going to use the following table variable inside one of my stored procedures; DECLARE @MyTempTable TABLE ( someField int, someFieldMore nvarchar(50) ) Is this variable ...
4
votes
4answers
131 views

How can I improve this SQL query?

I ran into an interesting SQL problem today and while I came up with a solution that works I doubt it's the best or most efficient answer. I defer to the experts here - help me learn something and ...
4
votes
1answer
65 views

SQL DateTime Conversion Fails when No Conversion Should be Taking Place

I'm modifying an existing query for a client, and I've encountered a somewhat baffling issue. Our client uses SQL Server 2008 R2 and the database in question provides the user the ability to specify ...
4
votes
5answers
196 views

Very slow stored procedure

I have a hard time with query optimization, currently I'm very close to the point of database redesign. And the stackoverflow is my last hope. I don't think that just showing you the query is enough ...
4
votes
3answers
149 views

SQL Server 2000 to SQL Server 2008 R2 migration

I am using SQL Server 2000 including 77 databases, and I want to migrate them to the new SQL Server 2008 R2. I can do this operation individually with attach or restore commands. Is there any script ...
4
votes
3answers
79 views

Help with t-sql query

I need a little help with a query. I have a table Managers. Columns: ManagerId, ManagerName. I have a table Clients. Columns: ClientId, ManagerId, ClientName, ClientAddress, Details. Each (every?) ...
4
votes
1answer
285 views

Open Blob fields using Openrowset in SQLSERVER 2008 R2

I need help to read a fileobject from SQLServer2008 R2 using the Openrowset, i can write a File to a Blob column like this: INSERT INTO myTable(FileName, FileType, Document) SELECT 'Text1.txt' AS ...
4
votes
4answers
144 views

Views in SQL Server

Can we use views to improve the performance for a query?
4
votes
1answer
480 views

SQL Server 2008 SET QUOTED_IDENTIFIER OFF problem

I have a stored procedure, and inside I have a query for paging, which returns me a set of results depending on which page I am. I have DECLARE @Products TABLE()... then INSERT INTO @Products ...
4
votes
1answer
155 views

MERGE Query and deleting records

I have a table that looks something like: AccountID, ItemID 1, 100 1, 200 2, 300 I have a proc that accepts a table value parameter which updates the Items associated with an account. We'll pass ...
4
votes
6answers
6k views

SQL Server 2008 connectionString question

I'm trying to connect to my SQL Server 2008 database with ASP.NET MVC 3. Here is my connection string: <connectionStrings> <add name="AppConnectionString" ...
4
votes
3answers
740 views

Why does SQL Server thinks a Temp Table already exists when it doesn't?

Background: There's a stored procedure which does "stuff" with a temp table of a given name. The procedure is generic in that it inspects the schema of the temp table and then does different "stuff" ...
4
votes
1answer
325 views

Autocomplete optimization for large data sets

I am working on a large project where I have to present efficient way for a user to enter data into a form. Three of the fields of that form require a value from a subset of a common data source (SQL ...

1 2 3 4 5 19