The sp-executesql tag has no wiki summary.
0
votes
0answers
21 views
Is it possible to disable the use of sp_executesql in entity framework EF 5?
We have big problem with the speed of mapped complex database view?
The execution by sp_executesql is twenty times slower as the directly sql statement and the query plan is more komplex.
0
votes
0answers
109 views
Dynamic queries and Dynamic Where clauses Solution
This week, I found myself in need of some dynamic queries. Now, dynamic queries and dynamic where clauses are nothing new and well documented all over the web. Yet, I needed something more. I needed ...
1
vote
0answers
21 views
Is there a limit to the number of executeSql statements you can run on a single transaction using phonegap on Android?
Is there a limit to the number of executeSql statements you can run on a single transaction using phonegap on Android? I am starting a transaction (db.transaction(...)) and then looping through about ...
2
votes
2answers
65 views
Returning NULL data values while using an SP_ExecuteSQL
I'm using an sp_executesql so I can be flexible with what I choose to return. I'm encountering a problem when attempted to return data where there is none.
Say for instance I'm attempting to find ...
1
vote
2answers
313 views
Getting return value from dynamic sql from stored procedure (SQL Server and C# ADO.NET)?
I created a stored procedure to get return value from a dynamic sql. I get the following exception:
String[1]: the Size property has an invalid size of 0.
My proc:
CREATE proc ...
2
votes
1answer
71 views
SP_ExecuteSQL with Parameters doesn't like Contains clause
I've been tasked with modifying a stored procedure so that it goes from looking like this:
DECLARE @ID nvarchar(10)
SET @ID = '0000000001'
DECLARE @SQL nvarchar(200)
SET @SQL = 'SELECT AppN FROM ...
0
votes
1answer
115 views
Dynamic “INSERT INTO” Query with User Defined Type
I have got a SQL-Table were eache line consists a singel Value of some kind of Virtuel-Tabel - means the real existig SQL-Table looks like this:
-----------------------------------------
...
1
vote
0answers
46 views
sp_executesql along with fulltext search and formsof inflectional
I'm trying to perform sp_executesql with fulltext search in it.
This query was working fine.
exec sp_executesql
N'SELECT TOP (@p0) this_.org_id as y0_, this_.u_Name as y1_, this_.Category as ...
0
votes
1answer
110 views
How do I truncate a table via linked server using a synonym for the table name?
I know I can do the following:
EXEC Server_Name.DBName.sys.sp_executesql N'TRUNCATE TABLE dbo.table_name'
But what if I want to use a synonym for the table?
I'm on SERVER1 and I want to truncate a ...
0
votes
0answers
337 views
PhoneGap - How to query SQLite in a for loop?
I have a problem with a SQLite query on PhoneGap application.
I would open a folder and make a select with where clause for every entries in the folder.
I open a for loop, after a select query, but ...
-1
votes
2answers
714 views
How to run a dynamic sql for each row of a table?
I have a table which contains a column named WhereClause
DECLARE @UserGroups TABLE (WhereClause nvarchar(1000), totalCount int)
The table has been populated with some values for WhereClause but ...
1
vote
1answer
111 views
T-SQL:exec() & sp_executedsql can't work with inserted & deteleted as input parameters
in my table there are three or more columns stored image file path ,so i need to store the image file path to an specify table 'OnDeleteFile' when the data is going to delete,then the program to ...
1
vote
0answers
71 views
SQL Server to MySQL conversion
I need help to convert this part of stored procedure from MSSQL to MYSQL, any suggestion is appreciated.
P.s. Sorry for my English
set @PARAMS = '@DATA_INIZIO VARCHAR(20),
...
0
votes
0answers
69 views
getting SQL message as a return value while using sp_executesql
I am using sp_executesql to insert/delete some records on the basis of some condition.
When something gets wrong and sql give some message like "can not insert duplicate values, primary key violation" ...
0
votes
2answers
2k views
Create table in by sql statement using executeUpdate in Mysql
I have the following doGet():
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
MysqlDataSource ds = new ...
0
votes
1answer
118 views
DynamicSQL using sp_executesql Error
I keep getting an error with the following stored procedure. I had it working correctly using EXEC, then I switched to sp_executesql and I haven't been able to get it to execute. I keep getting the ...
-1
votes
2answers
4k views
Set variables in stored procedure using EXECUTE sp_executesql
I'm trying to build an SQL string to execute via sp_executesql but I can't seem to assign value to a declared variable within the passed in sql string.
So below is an example of my procedure
ALTER ...
1
vote
1answer
4k views
Workaround for calling table-valued function remotely in SQL Server has even more issues
I had a query with a set of parameters that needed to be run multiple times with different parameters, so I wrapped it in a table-valued function.
That table valued function needed called from a ...
1
vote
3answers
1k views
Access SQL Server temporary tables created in different scope
I am writing a stored procedure for SQL Server 2008 in which I need to extract information from a set of tables. I do not know ahead of time the structure of those tables. There is another table in ...
2
votes
2answers
3k views
Execute a SQL String and insert result into table
I have a table
DECLARE @Results TABLE(QueryIndex smallint, FieldValue nvarchar(50))
QueryIndex is a loop counter, it will get value from @QueryIndex.
FieldValue will get value from another SQL ...
1
vote
2answers
690 views
How can I use SQL BETWEEN to compare two dates in a string to execute to sp_executesql?
I have a line in my SQL Stored Procedure that looks like this (works as intended):
HAVING oh.startdate BETWEEN @startDate AND @endDate
However, further down I have the line:
AND (oh.user IN ...
1
vote
1answer
178 views
Fast way to explicitly substitute parameters in an sp_executesql statement?
I am writing a program in C# that runs some select statements using parameters passed to sp_executesql. One issue that I'm running into when testing is that, whether I get the the commands executed ...
0
votes
3answers
81 views
EXECUTESQL error
Here is the following piece of code that I am trying to execute on SQL Server.
DECLARE @string NVARCHAR(MAX) = '
CREATE PROC [dbo].[Trend]
@slsID NVARCHAR(20)
AS
BEGIN
SET ...
8
votes
2answers
982 views
Entity Framework 4.2 exec sp_executesql does not use indexes (parameter sniffing)
I'm encountering some major performance problems with simple SQL queries generated by the Entity Framework (4.2) running against SQL Server 2008 R2. In some situations (but not all), EF uses the ...
2
votes
1answer
193 views
Using stored procedures with LINQ
I want to use LINQ to call stored procedure in this way but stored procedure I want to call contain SQL string that executed by
EXEC sp_executesql @strSQL
In this way Visual Studio does not ...
0
votes
3answers
2k views
Execute very long statements in TSQL using sp_executesql
I would like to execute dynamic SQL statements which are about 10,000 characters.
When I use sp_executesql as below:
DECLARE @stmt varchar(MAX)
SET @stmt = 'xxxxxxxx.................' which is ...
1
vote
4answers
5k views
Execute sp_executeSql for select…into #table but Cant Select out Temp Table Data
Is me again, I try to select...into a temp Table Call #TempTable in sp_Executedsql.
I not so sure thats its successfully inserted or not but there Messages there written
(359 row(s) affected) that ...
1
vote
1answer
3k views
passing user defined table parameter to dynamic sql, sp_executesql
I need help with passing my "user defined table type" parameter to dynamic sql, sp_executesql.
Here's my sample code:
DECLARE @str as nvarchar(Max)
DECLARE @IDLIST AS ListBigintType /* this is my ...
0
votes
2answers
546 views
sp_executesql returns different results from view than running the query directly
I'm trying to debug a SSRS report which is showing some dodgy results. I'm using sql profiler I've grabbed the exact query it's running which is executed with exec sp_executesql.
The query is ...
0
votes
1answer
193 views
sql view selecting from multiple databases, proxy user doesn't have access to remote database
I've set up multiple views in a sql server database. These views are are selected from in a stored procedure which has WITH EXECUTE AS 'proxyuser' clause in it's declaration. The select statement it ...
0
votes
1answer
419 views
HTML5 database table - check if empty
I'm attempting to write a function to determine if an html5 websql db table is empty. Code is below. I put alerts in there to see what is happening. When this function runs the alert at bottom ...
1
vote
2answers
335 views
sql server sp_executesql error with sql string
I have a string that looks like this:
set @sqlstring = N'select @mindate = min(time), @maxdate = max(time) from ' + @st_churn_active_table;
I print it and it looks like this:
select @mindate = ...
1
vote
1answer
322 views
sp_executeSQL and Statment with more than 2000 characters
I'm using dynamic SQL and I need to exec a long SQL query, First I declare @var with query as nvarchar(4000), but my query is longer than 4000 chars.
I try to change to nvarchar(8000) but raise an ...
2
votes
1answer
171 views
Dynamic sql and spexecutesql behavior
I have a table like
c1 c2 c3 c4
-----------------
2 1 7 13
9 2 8 14
1 3 9 15
5 4 10 16
2 5 11 17
11 6 12 18
As in general I would not know ...
3
votes
1answer
869 views
Using EXEC() or SP_EXECUTESQL with SQL Common Table Expressions
How do I use EXEC(@SQL) or EXEC SP_EXECUTESQL(@SQL) with Common Table Expressions?
Below does not work.
WITH CTE_Customer (ID, Name)
AS
(
EXEC (@strSqlCommand)
)
2
votes
3answers
10k views
Dynamic query results into a temp table or table variable
I have a stored procedure that uses sp_executesql to generate a result set, the number of columns in the result can vary but will be in the form of Col1 Col2 Col3 etc.
I need to get the result into a ...
1
vote
2answers
88 views
How do I query a value dynamically in T-SQL?
For whatever reason, I can't seem to get a value out dynamically from SQL.
declare @SQL nvarchar(max)
declare @FieldName nvarchar(255)
declare @FieldValue nvarchar(max)
select @SQL = 'SELECT TOP 1 ' ...
3
votes
2answers
1k views
Why would the exact same SQL query result with a different execution plan when executed via the sp_executeSQL procedure?
As the title states, I don't understand why the sp_executeSQL would generate a completely different execution plan than running the query from Sql Management Studio.
My query in question will take 3 ...
0
votes
1answer
708 views
Sanitize dynamic SQL query created by user. only SELECT allowed (no INSERT,UPDATE,DELETE,DROP, EXEC, etc…)
I am developping an ASP2.0 website with a Microsoft SQL server 2005 Database.
I need to implement a functionality which allows users to create a select query (nothing too complex) so that the website ...
0
votes
1answer
1k views
SQL SP_EXECSQL @VAR to run a “dynamic” OpenQuery
I have an OpenQuery (Used in SQL2005 to run a query against a legacy database). I'm building the string to run so that I'll return the last 6 months of data.
The problem I'm having is with '||' to ...
7
votes
4answers
12k views
HOWTO pass a TABLE variable to sp_executesql?
I'm trying to pass a TABLE variable to the sp_executesql procedure:
DECLARE @params NVARCHAR(MAX)
SET @params = '@workingData TABLE ( col1 VARCHAR(20),
col2 VARCHAR(50) )'
EXEC ...
3
votes
2answers
3k views
Permissions when using “Execute sp_Executesql”
I have a database where all access is controlled by stored procedures. The DBA would like to avoid giving users direct read/write access to the underlying tables, which I can understand. Hence all ...
1
vote
2answers
1k views
How to store a multiple or a list of values returned from sp_executesql?
UPDATE : This is what I did -
set @dyn_sql = '
select
@UserName=UserName
from
(
...
1
vote
1answer
1k views
Using LIKE in sp_executesql
SET @whereCond = @whereCond + ' AND name LIKE ''%'' + @name + ''%'''
Is there something wrong here? After I generate where condition, I execute it with sp_executesql, but I did get anything. When I ...
1
vote
3answers
1k views
sp_executesql with 'IN' statement
I am trying to use sp_executesql to prevent SQL injection in SQL 2005, I have a simple query like this:
SELECT * from table WHERE RegionCode in ('X101', 'B202')
However, when I use sp_executesql to ...
0
votes
3answers
928 views
Fully qualified table names with SP_ExecuteSql to access remote server
Trying to update a table on a linked server (SQL 2000/2005) but my server name will not be known ahead of time. I'm trying this:
DECLARE @Sql NVARCHAR(4000)
DECLARE @ParamDef NVARCHAR(4000)
DECLARE ...
4
votes
3answers
958 views
Easy way to convert exec sp_executesql to a normal query? [closed]
When dealing with debugging queries using Profiler and SSMS, its pretty common for me to copy a query from Profiler and test them in SSMS. Because I use parameterized sql, my queries are all sent as ...


