0
votes
5answers
26 views
Executing multiple dynamic statements together over linked server
I need to execute three dynamic SQL statements synchronously on a linked server (SQL Server 2005) like this:
declare @statement nvarchar(max);
set @statement = 'exec ' + @server_ …
1
vote
2answers
548 views
Dynamic Linq To Sql With ComboBox and Column.Contains
I have a text box, combo box, button and DataGridView on a form that is used to search and return customer information from a MSSQL view (vCustomer). It works great, but I know my …
0
votes
4answers
35 views
Unable to use fully qualified table name in dynamic SQL
I'm trying to update a table on several remote servers by iterating over a list of server names and executing some dynamic SQL. See below.
DECLARE @Sql NVARCHAR(4000)
DECLARE @Ser …
0
votes
2answers
25 views
Parameterizing Dynamic SQL issue with SQL_VARIANT datatype.
I've been refactoring a huge dynamic SQL statement, and think I may have hit a roadblock. The goal has been to parameterize it. I'm using SQL Server 2005.
I have an int variable ( …
1
vote
3answers
130 views
PL/SQL - Optional conditions in where-clause - without dynamic sql?
I have a query where not all conditions are necessary. Here's an example of what it looks like when all conditions are used:
select num
from (select distinct q.num
from cqq …
1
vote
1answer
29 views
SQL Server dynamic pivot returning null value when none exist in the data
I have 3 tables (tblPreference, tblCustomer, tblCustomerPreference) that look something like the following:
tblPreference:
ID | Name | DefaultValue
(int PK) | (nv …
0
votes
3answers
34 views
How to add variables in Dynamic Sql, not concatenate them?
I have the following dynamic sql statement where I want to add @StartRowIndex + @MaximumRows and subtract 1 from it. I am unclear on where to put the single quotes in the statemen …
1
vote
4answers
60 views
How do I debug Oracle dynamic sql in sqlplus?
I have a PL/SQL statement that uses EXECUTE IMMEDIATE to execute a query. However, I'm having difficulty figuring out how to even get the text of the query that's being executed. …
0
votes
2answers
73 views
Oracle Dynamic SQL for columns
I am writing a stored procedure for which I need to populate a table based on the data being reported on.
In this situation, I will be pulling in three values per day for a certai …
1
vote
3answers
113 views
[sp_executesql] Incorrect syntax near ‘sp_executesql’
I don't understand why the following is giving me the error. I thought it was related to the commented out section, but @SQL is nvarchar(4000).
BEGIN
sp_executesql N'SELECT ''t …
0
votes
3answers
685 views
How to get sp_executesql result into a variable?
I have a piece of dynamic SQL I need to execute, I then need to store the result into a variable.
I know I can use sp_executesql but can't find clear examples around about how to …
2
votes
5answers
113 views
how to select columns as rows?
So, I've been searching around and I've found things similar to my problem, but I need more help to get a real solution.
I'm trying to construct a query that will return 2 columns …
0
votes
1answer
49 views
How to create a dynamic query using EOD SQL?
Hello guys.
This should be fairly simple, though I can't seem to find a single example.
I want to create a query looking like this:
SELECT column_name FROM table_name WHERE colum …
5
votes
5answers
3k views
MS-SQL: Drop all tables whose names begin with a certain string
I'd like a script to drop all tables whose name begins with a given string. I'm sure this can be done with some dynamic sql and the INFORMATION_SCHEMA tables.
If anyone has a scri …
0
votes
2answers
180 views
How do I concatenate variables with a string to create an Oracle table name in a FROM clause in a stored procedure?
e.g.
select *
from v_schema || '.tbl_a@' || abc.world
