Tagged Questions
Dynamic SQL is an enhanced form of SQL (Structured Query Language) whose main difference from traditional SQL is that Dynamic SQL allows to build SQL statements dynamically at runtime, which eases the automatic generation and execution of program statements.
43
votes
10answers
31k views
Why would someone use WHERE 1=1 AND <conditions> in a SQL clause?
Why would someone use WHERE 1=1 AND <conditions> in a SQL clause (Either SQL obtained through concatenated strings, either view definition)
I've seen somewhere that this would be used to ...
17
votes
6answers
19k 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 script, or can knock one ...
13
votes
8answers
386 views
What is dynamic SQL?
I just asked an SQL related question, and the first answer was: "This is a situation where dynamic SQL is the way to go."
As I had never heard of dynamic SQL before, I immediately searched this ...
13
votes
10answers
12k views
In SQL Server, how do I generate a CREATE TABLE statement for a given table?
I've spent a good amount of time coming up with solution to this problem, so in the spirit of this post, I'm posting it here, since I think it might be useful to others.
If anyone has a better ...
10
votes
9answers
4k views
Dynamic SQL Java library
We need to generate dynamic SQL in our Java app. Does anyone know a simple library to do this?
In our Java app we have a bunch of where clause filter criteria (database column, operand, value). In ...
9
votes
4answers
10k 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 do this.
8
votes
2answers
179 views
How do I exploit “EXEC @sql”?
My co-worker is being unsafe with his code and is allowing a user to upload an SQL file to be run on the server.
He strips out any key words in the file such as "EXEC", "DROP", "UPDATE", "INSERT", ...
6
votes
3answers
643 views
Table with Select Statements, Executing Dynamic SQL and Returning Values
I have a select statement that returns a table full of SELECT statements (It goes through every column in every table and creates a select to find if that column contains any bad data).
I need to ...
6
votes
8answers
696 views
How to design a generic database whose layout may change over time?
Here's a tricky one - how do I programatically create and interrogate a database whose contents I can't really foresee?
I am implementing a generic input form system. The user can create PHP forms ...
6
votes
4answers
764 views
Is there a dynamic Sql builder library for .Net?
Something like this.
http://code.google.com/p/squiggle-sql/wiki/Tutorial.
This is required for cases where It is required to build complex sql from the user input from UI. Currently in the project I ...
6
votes
3answers
163 views
What is a dynamic SQL query, and when would I want to use one?
What is a dynamic SQL query, and when would I want to use one? I'm using SQL Server 2005.
5
votes
2answers
334 views
How to use Order By in a stored procedure without using dynamic SQL
I've the following MS SQL stored procedure. I need to sort the results without using dynamic SQL and sp_executesql method
@Order by can have the possible values ProductName ASC, ProductName DESC, ...
5
votes
3answers
741 views
Getting result of dynamic SQL into a variable
Executing dynamic SQL as follows in Stored Procedure:
DECLARE @sqlCommand nvarchar(1000)
DECLARE @city varchar(75)
SET @city = 'London'
SET @sqlCommand = 'SELECT COUNT(*) FROM customers WHERE City = ...
5
votes
2answers
327 views
Stored procedure syntax Error(MSSQL)
Below mentioned stored procedure is giving error while creating
Msg 156, Level 15, State 1, Procedure crosstab, Line 23
Incorrect syntax near the keyword 'pivot'.
Can anyone please tell me the ...
5
votes
4answers
1k views
Ad hoc queries vs stored procedures vs Dynamic SQL
Ad hoc queries vs stored procedures vs Dynamic SQL. Can anyone say pros and cons?
Best regards, Kristaps
5
votes
2answers
1k views
getting “select permission denied” error when using sp_executesql in proc (Sql Server 2008)
I'm using Sql Server 2008 and have a proc that uses sp_executesql inside. I keep getting the following error when executing the proc through ASP.NET:
The SELECT permission was denied on the object ...
5
votes
6answers
18k views
Using a cursor with dynamic SQL in a stored procedure
I have a dynamic SQL statement I've created in a stored procedure. I need to iterate over the results using a cursor. I'm having a hard time figuring out the right syntax. Here's what I'm doing.
...
4
votes
3answers
147 views
PostgreSQL parameterized Order By / Limit in table function
I have a sql function that does a simple sql select statement:
CREATE OR REPLACE FUNCTION getStuff(param character varying)
RETURNS SETOF stuff AS
$BODY$
select *
from stuff
where col = ...
4
votes
4answers
118 views
SQL Server 2008 - Too much denormalization and over Indexing: What use is there for the Matrix?
I have a budding developer who is very enthusiastic about something he is calling “the matrix”
I am looking for peer insight
In a nutshell this is what we have:
- 1 highly denormalized table ...
4
votes
1answer
103 views
About dynamic SQL in SQL Server, it does not check for permissions when dynamic SQL is used
What is dynamic SQL?
I read in a book that when we use dynamic SQL, SQL checks for permissions. But when we do not use it, then there is no check of permissions. Why so?
I made a stored procedure, ...
4
votes
3answers
160 views
In SQL Server, is there a way to avoid using a Cursor?
I have a table where each record has a Table_Name (name of a table). I then use a Cursor to select all table names related to some record in to a Cursor. Then I do a WHILE for each table name in the ...
4
votes
3answers
161 views
What is happening in this T-SQL code? (Concatenting the results of a SELECT statement)
I'm just starting to learn T-SQL and could use some help in understanding what's going on in a particular block of code. I modified some code in an answer I received in a previous question, and here ...
4
votes
2answers
578 views
Column names in dynamically generated datawindows
When I dynamically create a datastore using SyntaxFromSQL (in order to generate datastore source code, based on a SQL SELECT statement), with syntax like this
string ERRORS, sql_syntax, dwsyntax_str, ...
4
votes
3answers
139 views
Is there a way to select a database from a variable?
Is there a way to select a database from a variable?
Declare @bob as varchar(50);
Set @bob = 'SweetDB';
GO
USE @bob
4
votes
4answers
642 views
What are the dangers of dynamic SQL, and can they be avoided?
We've just been given the following code as a solution for a complicated search query in a new application provided by offshore developers. I'm skeptical of the use of dynamic SQL because I could ...
3
votes
1answer
98 views
Equivalent of php's mysql_real_escape_string
I have a need for some dynamic SQL to INSERT a large number of values into a database.
INSERT INTO table1 (a,b,c,d) VALUES (1,2,3,'string with possible quotes'),....
Because I want to insert ...
3
votes
1answer
186 views
insert with dynamic table name in trigger function
I'm not sure how to achieve something like the following:
CREATE OR REPLACE FUNCTION fnJobQueueBEFORE() RETURNS trigger AS $$
DECLARE
shadowname varchar := TG_TABLE_NAME || 'shadow';
...
3
votes
3answers
66 views
How to tell if SQL stored in a variable will return any rows
If I have a SQL script stored in a variable like this:
DECLARE @SQL VARCHAR(MAX) = 'SELECT * FROM Employees WHERE Age > 80'
How can I tell if @SQL would return any rows if I were to run it?
In ...
3
votes
1answer
330 views
Can MySQL triggers be created with dynamic SQL from within a stored procedure?
Is it possible to create a trigger in MySQL using dynamically generated SQL from within a stored procedure? I am executing other dynamically constructed queries in my procedure by preparing a ...
3
votes
6answers
8k views
How to use table variable in a dynamic sql statement?
In my stored procedure I declared two table variables on top of my procedure. Now I am trying to use that table variable within a dynamic sql statement but I get this error at the time of execution of ...
3
votes
4answers
250 views
New to Dynamic SQL Statements
Im currently making a very simple WebApp on a Website using ASP.NET Framework using C# in Visual Studio 2010.
The website will connect to my SQL EXPRESS server running on my laptop (Its all locally ...
3
votes
3answers
540 views
T-SQL: can I use a variable as a database reference
I want to accomplish this:
update @sourceDatabase.dbo.PredictedPrices
and then set @sourceDatabase as a variable.
But I'm not allowed?
Incorrect syntax near '.'.
Is there another way?
3
votes
4answers
350 views
Creating UI and database dynamically, what is the best approach?
I have a requirement in which in order to make an application extensible and reusable, I have to create a provision through which a user would be able to provide a business object structure (the ...
3
votes
3answers
703 views
How to create a very dynamic LinqToEntity query?
I need to build a very dynamic Linq query over a varying number of tables.
For example, I have the related tables:
Table_A
- ID
- Name
- Desc
Table_B
- ID
- Table_A_ID
- Name
- Desc
Table_C
...
3
votes
4answers
278 views
SQL Dynamic query for searching
I am working on a problem that I'm certain someone has seen before, but all I found across the net was how not to do it.
Fake table example and dynamic searching.
(Due to my low rating I cannot post ...
3
votes
1answer
240 views
Dynamic access to tables from another database inside an user function
I have an user defined table function in SQL Server that aggregate data from several tables including a couple of tables of another database. That is done hardcoding the name of the database in the ...
3
votes
9answers
358 views
What do we consider as a dynamic sql statement?
a) What do we consider as a dynamic sql statement?
Any sql statement that dynamically adds a clause(s) or even just a part of a clause to a SQL string?
b)Aren’t then parameterized strings that use ...
3
votes
5answers
1k 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 of data, the first ...
3
votes
5answers
8k views
Oracle EXECUTE IMMEDIATE with variable number of binds possible?
I need to use dynamic SQL execution on oracle where I do not know the exact number of bind variables used in the SQL before runtime.
Is there a way to use a variable number of bind-arguments in the ...
3
votes
4answers
2k views
Generate Delete Statement From Foreign Key Relationships in SQL 2008?
Is it possible via script/tool to generate a delete statement based on the tables fk relations.
i.e. I have the table: DelMe(ID) and there are 30 tables with fk references to its ID that I need to ...
3
votes
6answers
1k views
Need Pattern for dynamic search of multiple sql tables
I'm looking for a pattern for performing a dynamic search on multiple tables.
I have no control over the legacy (and poorly designed) database table structure.
Consider a scenario similar to a ...
2
votes
1answer
38 views
SQL Query for available appointment slots over a month
Currently I have a query:
select a.day_of_week,
a.time,
a.id,
'2012-01-10' as scheduleDate,
a.max_customers,
(SELECT count(b.id)
from appointments b
...
2
votes
2answers
36 views
Dynamic SQL vs Parameterised query
Is this stored procedure considered Dynamic SQL or a Parameterised query?
CREATE PROCEDURE [dbo].[my_dodgy_sp]
@varchar1 varchar(50),
@varchar2 varchar(50)
AS
BEGIN
...
EXEC ...
2
votes
2answers
114 views
SQL Query - Table from field
This is my situation. I have different tables, by example:
TABLE A
Name | Phone
John 123
Mick 233
TABLE B
Department | Position
IT xxx ...
2
votes
1answer
23 views
SQL Server 2008 Updating VarChar Column with a UDF?
I have a scalar function that takes a two variables @input1 @input2 and it returns the value of @input1 and @input2 (actual thing is more complex but this distills the idea).
I want to update all ...
2
votes
3answers
96 views
How can i select from table where tablename is specified as SqlParameter?
I am trying to perform dynamic sql select where I am selecting from a table using a parameter.
SELECT null FROM @TableName
However I am getting error must declare table variable @TableName. I ...
2
votes
1answer
67 views
SQL query FROM variable tables
I have 4 tables : one with events, one with those events' attendants, and two others containing information about those attendants, might they be single persons or groups of persons. The design of the ...
2
votes
1answer
97 views
How can I convey the benefits of Dynamic SQL (D-SQL) to my boss? [closed]
I work at a very stored procedure heavy company who frowns on D-SQL. And it's basically because of a knowledge gap. It's not the developers who need convincing, but their bosses.
Although there are ...
2
votes
3answers
98 views
Specify the column names in the select clause using a query
I have a SQL query where I want to specify the names of the columns dynamically.
Let's say I have a table called TABLE_A, and it has a column by name ID. I was wondering if I could do something like:
...
2
votes
2answers
83 views
Using local variable for “IN” criteria condition with SQL Server [closed]
Possible Duplicate:
SQL : in clause in storedprocedure:how to pass values
I'm using MS SQL Server 2005, and trying to basically script a 2-step process:
Query a table for a list of IDs ...