Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
3k 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
1answer
185 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) )
3
votes
3answers
529 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 ...
2
votes
1answer
97 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 ...
2
votes
1answer
75 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 ...
1
vote
0answers
52 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 ...
1
vote
1answer
172 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 ...
1
vote
2answers
97 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
98 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 ...
1
vote
3answers
2k 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
64 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 ' ...
1
vote
2answers
828 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
423 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
297 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 ...
0
votes
0answers
43 views

Can linq to sql supply prepared query parameters to sp_executesql?

I'm having an issue where a query written in linq to sql is not performing as expected mostly due to the query generated does not supply parameterization that is strongly typed to sp_executesql. For ...
0
votes
2answers
205 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 ...
0
votes
3answers
210 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 ...
0
votes
0answers
62 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
114 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 ...
0
votes
0answers
50 views

Processes (Threads) using SP_EXECUTESQL seem to disappear in SQL Server 2008

I rebuild a part of my data warehousing (sql server 2008 r2 data center) using the following technique... 1) Main Build SP traverses build table for jobs one at a time 2) When it reaches the ...
0
votes
2answers
262 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
305 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
444 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 ...
0
votes
3answers
340 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
493 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 ...
-1
votes
2answers
127 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. Using sql profiler I've grabbed the exact query it's running which is executed with exec sp_executesql... The query is returning ...