Dynamic SQL is a technique using 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.

learn more… | top users | synonyms

0
votes
1answer
38 views

PL SQL - Dynamic SQL in the where clause of a select statement

I'm really new to Oracle PL/SQL, but experienced in Sql Server, and I'm trying to learn the ins and outs of it. For an introductory to it I've decided to optimize a query that is generated as a C# ...
0
votes
1answer
35 views

Dynamic SQL value from table

I'm working with a dynamic query right now and I need values from a table. My query so far: DECLARE @query varchar(1500) SET @query = 'SELECT Id,' + 'SUM(CASE WHEN ...
0
votes
2answers
34 views

sql dates as column name

I want a table with columns named after dates. example: SELECT * AS GETDATE() FROM mytable; From what I've read on the internet, it looks as though I will need to use dynamic SQL (?) something in ...
1
vote
5answers
44 views

Dynamic SQL to pass table name and return Max ID value

Here is what I am trying to do I have list of tables(50 of them) and in all the tables I have one common column called "ID", what I want to do is pass table name that will dynamically return my ...
1
vote
1answer
65 views

Stored procedure with table name as parameter amongst others

I have tried to update a stored procedure which worked fine without the need to use sp_executesql. I now want to have the table name as a parameter as I have a number of tables with the same structure ...
-2
votes
1answer
42 views

Parameter index out of range (1 > number of parameters, which is 0).; nested exception is java.sql.SQLException: [closed]

I'm getting this error: java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0). at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1078) at ...
-1
votes
1answer
36 views

Using UNPIVOT with Dynamic SQL

I have a table with this schema: tblResults Question1 | Question2 | Question3 | etc | etc | Question240 | In these columns values can be of the following: 1, 2, 3, 4, N, M I need to present the ...
0
votes
2answers
80 views

Incorrect syntax near in SQL

I spend lot of time to figure out, what is the error, l have code like this. DECLARE @GeofenceName nvarchar(50) = ''; DECLARE @sql AS NVARCHAR(MAX) SET @sql = N'select * from GeofenceMaster where ...
1
vote
1answer
23 views

adding column though loop

i created a table #cinema c_name c_count a 1 b 2 c 3 d 4 and a table #display name id how can i add c_name to table #display as column through loop like: name ...
-1
votes
1answer
22 views

putting query in exec

SET @count = 0 SET @select = '' WHILE @count < @c_count BEGIN SET @count = @count+1. SET @select = @select+'cinema'+cast(@count AS VARCHAR)+'+' END SET @select = SUBSTRING(@select, 1, ...
0
votes
1answer
15 views

Can I truncate tables dynamically?

I have a table with 3 partitions; it's split by point of sale. CREATE VIEW massive_table as SELECT * FROM massive_table_UK UNION ALL SELECT * FROM massive_table_US UNION ALL SELECT * FROM ...
2
votes
0answers
97 views

Sum of multiple values of one variable

I want to sum the variable that is holding the value in a loop, Here's my table: name | pkey | cinema1~cinema10 | total_QTy | total_sales aaa | 1 | 100.00 ~ 200.00 | 2 | 300.00 bbb ...
0
votes
0answers
49 views

sum of count columns, help me here pls [duplicate]

i want to know the sum of count of every ticket sold by every cinema i've created a temp table(main table) the result is this name pkey cinema1~cinema10 total_Qty total_sales aaa 1 100.00, ...
0
votes
1answer
61 views

how to sum column i in temp table

SELECT @cinema_count = COUNT(c.[key]) FROM cinemas c SET @count = 0 WHILE @count < @cinema_count BEGIN SET @count = @count+1 SET @buffer = 'ALTER TABLE #temptable ADD ...
0
votes
1answer
38 views

Dynamic Sql: Create array from records using array of column names

I am pulling all of the column_names (cname1) from a crosstab table that I made. There are thousands of these column names so I combined them into an array. I then want to use dynamic sql (or whatever ...
0
votes
0answers
47 views

dynamic SQL? help me pls! thanks

im working on a dynamic sql and i need the result to be like this: name | cinema1 | cinema2| cinema3 aaaa | amount | amount | amount bbb | amount | amount | amount but in my code the ...
0
votes
1answer
58 views

Invalid Column Name errors in dynamic query. Works in SQL Server 2008 but not in SQL Server 2012

I'm in the middle of going from SQL Server 2008 (not R2) to SQL Server 2012. I've restored my database into SQL Server 2012 but I'm getting runtime errors trying to call a certain dynamic query. ...
1
vote
1answer
41 views

oracle dynamic sql using params with brackets as table name

I have a table in my schema with brackets in its name (that's a legacy, cannot be modified): CREATE TABLE "Addresses" ("ID" NUMBER(*,0) , "FullAddress" ...
0
votes
1answer
48 views

Custom Sort (not using ORDER BY) and pagination

I have a moderately complex query (Over 1K LOC so far) for a search-type web page. The result set needs to be in a certain order. There are 7 different criteria that are used to order this set. I have ...
1
vote
3answers
38 views

Dynamic SQL If Statement?

I am storing a nested set in mysql. I use the following dynamic sql to insert a node: SELECT @myLeft := lft FROM t WHERE id = ?; UPDATE t SET ...
2
votes
2answers
372 views

“ERROR: extra data after last expected column” when using PostgreSQL COPY

Please bear with me as this is my first post. I'm trying to run the COPY command in PostgreSQL-9.2 to add a tab delimited table from a .txt file to a PostgreSQL database such as: COPY raw_data FROM ...
1
vote
2answers
46 views

Updating multiple columns that start with a specific string

I am trying to update a bunch of columns in a DB for testing purposes of a feature. I have a table that is built with hibernate so all of the columns that are created for an embedded entity begin with ...
0
votes
1answer
188 views

PostgreSQL - SQL state: 42601 syntax error

I would like to know how to use a dynamic query inside a function. I've tried lots of ways, however, when I try to compile my function a message SQL 42601 is displayed. The code that I use: CREATE ...
0
votes
0answers
24 views

Dynamic Oracle function

Is it possible to create a function that will get the id and name of a table as parameters in a select statement? I want to check whether the status is 1 or 0 from different tables. eg. CREATE OR ...
0
votes
1answer
34 views

postgres: function with untyped return values

I'm looking for a way to define a postgres function that allows to return untyped row values. For argument sake, let's assume the following tables exists: create table foo( id serial primary key, ...
0
votes
1answer
67 views

Function returning varchar2 gives wrong result [duplicate]

I want to build query dynamically as per criterias selected from gui. Here is my oracle package, CREATE OR REPLACE PACKAGE TestPkg AS g_lastnamelist VARCHAR2(50); FUNCTION getLastName ...
0
votes
1answer
67 views

can we use cursor for a UPDATE query?

Can we declare and open a cursor for UPDATE query also or is it only for SELECT queries? EXEC SQL PREPARE S FROM :query; EXEC SQL DECLARE C CURSOR FOR S; ...
2
votes
1answer
38 views

Calculating relay-race times via a recurrence (in dynamic-SQL)

I have a database with a table of records storing timestamps between a series of interim-transactions and a completed transaction. It's stored in a very odd way in the database, which is causing me ...
0
votes
1answer
56 views

dynamic sql within stored procedure

I am running into a problem with a view creation. I am trying to create a view with one of the fields being 7 weekdays before another date in the table. The field [Live_Date] is provided by the ...
1
vote
1answer
56 views

COPY with dynamic file name

I am trying to write a function to load csv data into a table. I want the input argument to be the path to the file. CREATE OR REPLACE FUNCTION public.loaddata(filepathname varchar) RETURNS void ...
-2
votes
1answer
187 views

Executing mySQL query in PHP with Dynamic Table name

I have a an android app which sends the table name as a parameter to a php script for executing a mySQL query. Problem is the table-name is a parameter (hence dynamic). I tried using the ...
0
votes
1answer
81 views

How to get postgres (8.4) query results with unknown columns

Edit: After posting I found Erwin Brandstetter's answer to a similar question. It sounds like in 9.2+ I could use the last option he listed, but none of the other alternatives sound workable for my ...
0
votes
1answer
91 views

Best approach to dynamic SQL?

I have a task to build a query (just the where clause) and store it in the database. It will then be executed by a stored proc. I want to use parametrised dynamic query but it's awkward to store ...
1
vote
1answer
122 views

Generating completely dynamic SQL with linq

I've been using Linq to Entity Framework for a while and have been loving it. However, I am now in a situation where I need to query a completely dynamic database table on sql server. I do not know ...
1
vote
4answers
326 views

Select columns with particular column names in PostgreSQL

I want to write a simple query to select a number of columns in PostgreSQL. However, I keep getting errors - I tried a few options but they did not work for me. At the moment I am getting the ...
0
votes
1answer
73 views

Error in Parameters of Stored Procedure when Dynamic SQL is used

I am using Oracle Sql Developer to write a Stored Proc, which accepts a list of values separated by "," (dynamic sql) and use this variable in "in" clause to fire a query from a table. But i am ...
0
votes
1answer
48 views

how to use OUT mode in dynamic sql

This is what, I'm trying 1 declare 2 stmt VARCHAR2(200):='&query'; 3 emprec emp%ROWTYPE; 4 BEGIN 5 EXECUTE IMMEDIATE stmt USING out emprec,in &id; 6 ...
0
votes
0answers
59 views

Dynamic SQL Procedure within function

I am trying to create a stored procedure that among other things, updates a table with information from other table: UPDATE table1 T1, table2 T2 set T1.rank = T1.rank + T2.rank T1.tags = ...
0
votes
4answers
194 views

Conversion failed when converting the nvarchar value '06/30/2012' to data type int

I'm having issues trying to set two variables, a From Date, and a To Date. Once I solve the issue for one, the other will be easy enough to figure out. I'm getting the error: Conversion failed ...
0
votes
2answers
46 views

Create a table with sums using dynamic sql

The values I need to select dynamically are dates, and thus change (i.e. weekly or monthly). I would like to know how to do this using the "EXEC" function in TSQL (SQL Server 2008) Table Regis has 4 ...
0
votes
3answers
105 views

Using a delimiter to search for multiple terms in a like terms

I had encountered this problem yesterday and thought I had solved it but I was wrong. For the purpose of this script, I'll need the variables to be in a string with a delimiter (this is because end ...
0
votes
1answer
92 views

Dynamic Table Creation in Stored Procedure along with insertion

I have a stored procedure which contains dynamic sample table creation, after that I have insert into sample table statement. When I compile the procedure, it says table or view does not exists. How ...
0
votes
2answers
75 views

Is it possible to search for multiple terms in a column by using a LIKE statement?

I'm trying to understand if the above question is possible. I've been conceptually thinking about it, and basically what I'm looking to do is: Specify keywords that may appear in a title. Lets use ...
2
votes
2answers
74 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 ...
0
votes
1answer
85 views

Using mathematical operators in multi variable parameters

I'm wondering if it's possible to include mathematical operators and situations in a multivariable parameter. In my example, I'm looking to have the freedom to enter 'Overdue' 'Less than one day' or ...
1
vote
5answers
865 views

Conversion failed when converting datetime from character string

I am trying to pass parameters from windows application to a stored procedure. there are two parameters '@dt' & '@dt2' which get value from datetimepickers. whenever i execute the stored procedure ...
-1
votes
1answer
379 views

using dynamic sql in c# code in visual studio

I am developing a application in which i need to generate reports based on in and out entries of employees. I dont have experience with database related applications using dynamic queries. In this ...
0
votes
3answers
791 views

“A SELECT statement that assigns a value to a variable must not be combined with data-retrieval operations.” with regards to variables in SP

My query is much more complex than I'll post here, but I'm unable to use a variable while using an sp_execute SQL ... is there a workaround? declare @system_status varchar(30) select @system_status = ...
0
votes
1answer
45 views

Error This feature is not implemented SQL ORACLE

I have read this post about USING clause in EXECUTE IMMEDIATE statements: Then I just wanted to test it for non-null values: declare mydate date; begin mydate := to_date('01.01.2001','dd.mm.yyyy'); ...
0
votes
1answer
609 views

How to select column names dynamically in mySQL

I want to select column names but I don't know the table structure ahead of time and it may change so I can't just hard code the select statement with column names. I also do NOT want to select every ...

1 2 3 4 5 11