Tagged Questions
1
vote
0answers
38 views
.net framework execution was aborted by escalation policy because of out of memory
I am using Net framework 4.0 and Sql Server 2012 for the development. There is an error occurring randomly while performing database operation in the web application in asp.net. I have call some sql ...
0
votes
2answers
122 views
Connecting to a SQL Server 2012 AlwaysOn Group Listener with MultiSubnetFailover results in a Timeout
We're having a strange issue where our developers are not able to connect to the AlwaysOn Availability Group Listener when MultiSubnetFailover is set to true. However, the clients can connect when ...
0
votes
0answers
62 views
Best Practices for Replacing SQL 2008 Native XML Web Services
We are currently using SOAP/HTTP Endpoints in SQL Server 2008 to make some stored procedures available to our SharePoint based website. We are now planning a migration to SQL 2012, which doesn't ...
1
vote
3answers
126 views
sp_executesql runs in milliseconds in SSMS but takes 3 seconds from ado.net [duplicate]
This is my dynamic query used on search form which runs in milliseconds in SSMS roughly between 300 to 400 ms:
exec sp_executesql N'set arithabort off;
set transaction isolation level read ...
0
votes
2answers
217 views
Issue: SQL Server 2012 + C#.NET number of connections keeps growing
I have a multithreaded C# application where I need each thread to have an active connection. I can't use connection pooling unless there is a way to use static connection to update/insert multiple ...
0
votes
0answers
133 views
SqlClient.SqlCommand Parameter SqlDbType.Time in ADO.NET : Size Property?
When creating a System.Data.SqlClient.SqlParameter client-side in ADO.NET, which is going to be assigned the value of a TimeSpan CLR type, and which will be used to update a SQL Server 2012 database ...
2
votes
1answer
353 views
SQL Server performance - schema vs multiple databases
This is purely from performance standpoint and only for SQL Server. I am using SQL Server 2012. I am migrating from a different database server (Ctree). The databases are from less than 100mbs to ...
0
votes
1answer
251 views
ADO.NET requesting existing connection string
I created an ADO.NET object in my WCF service project, but when I try to connect in it I get this error:
No connection string named 'FileEntities' could be found in the
application config file.
...
0
votes
1answer
36 views
Table doesn't show up in ADO object
I used SQL Server Management Studio to create 3 tables using SQL statements.
Then I attempted to create an ADO object in Visual Studio. The ADO wizard saw my database, but not the tables I created.
...
1
vote
2answers
721 views
Programmatically copying data across tables in different sql server databases having different schemas
I am trying to build a system which takes in snapshot of a few related tables in a SQL Server database, attaches a date-time element to it and is stored in a different database. Hence the new database ...
0
votes
2answers
367 views
Override rows number affected returned by stored procedure that uses cursor inside
I have a stored procedure simplified to the following code:
SET NOCOUNT ON
DECLARE @count INT
DECLARE @temp TABLE
INSERT INTO @temp
SELECT @count = count(*) FROM @temp
DECLARE [cursor] FOR SELECT ...
4
votes
1answer
258 views
What is the Type System Version (Compatibility Level) for SQL Server 2012
What Type System Version (Compatibility Level) token can I specify in ADO.NET connection string to indicate that only SQL Server 2012 is supported?
