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.
0
votes
1answer
18 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
29 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
36 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
27 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
30 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
45 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
28 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 ...
1
vote
1answer
141 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
39 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
95 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
29 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
55 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
54 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
36 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
47 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
51 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
128 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
73 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
87 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
96 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
197 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
60 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
40 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
53 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
144 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
41 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
85 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
81 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
72 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
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 ...
0
votes
1answer
76 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
547 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
330 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
483 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
43 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
411 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 ...
0
votes
3answers
359 views
Stored Procedure with Dynamic Query
I am writing a stored procedure using dynamic SQL.
In my procedure, I have say some 10 tables of similar columns.
For example if I consider Designation & Department tables, Designation table ...
3
votes
1answer
147 views
SQL merge functionality without specifying column names
I'm doing a SQLBulkCopy from my web app and inserting the records into a staging table. This is my first time working with staging tables. The live table that will be accepting the data has about 200 ...
1
vote
2answers
208 views
Update multiple columns in a trigger function in plpgsql
Given the following schema:
create table account_type_a (
id SERIAL UNIQUE PRIMARY KEY,
some_column VARCHAR
);
create table account_type_b (
id SERIAL UNIQUE PRIMARY KEY,
some_other_column ...
-1
votes
1answer
130 views
anonymous block in 11g
I need a help on this.
I am trying to create a pl/sql anonymous block and when I run that it shows its completed but it don't run the code. It should give me an error saying name is already used by ...
0
votes
0answers
73 views
Error with Stored Procedure when attempting to insert a field name into a table along with Grouped Data
I wanted to create a stored procedure to insert records into a table that-look at each field, return every different length within the field, as well as the number of records with that field length.
...
0
votes
1answer
77 views
Querying the result of an previous SQL query, using a HTML form and PHP
I've been racking my brain trying to figure out how to get this to work. Now, i'll explain it a bit better here.
What i'm trying to do is, when the user types something into a form it returns the ...
-1
votes
3answers
104 views
Display results of dynamic SQL stored in a table SQL Server 2012
I have a table that's being used by and application to set some variables over there.
However one of the things that it does is creating files, and the file names and directories are saved in the ...
0
votes
2answers
152 views
Dynamic SQL Query Search
I'm trying to build an SQL query with given params, but I get a weird error and cant understand why. Here is my SP and result
ALTER PROCEDURE [dbo].[sp_Photographers_Select_Search]
@Date ...
1
vote
1answer
117 views
Modifying PL/pgSQL function using generate_series()
I am working on a version of PostgreSQL 8.3 that does not support the variant of the generate_series() functions for date/time series. I have this ugly workaround at the moment that calls the function ...
0
votes
3answers
101 views
Mysql dynamic sql statement with PDO and parameters
I want to create a dynamic sql statement and run it using PDO. My problem is that i have some parameters and i cannot think of a way to pass the parameters.
Ex :
$query = "Select * from tbl_task ...
0
votes
1answer
156 views
Improve dynamic SQL query performance or filter records another way
Preliminaries:
Our application can read data from an attached client SQL Server 2005 or 2008 database but make no changes to it, apart from using temp tables. We can create tables in our own database ...
1
vote
3answers
183 views
Using Dynamic SQL to create a table
The following works:
DECLARE @cols AS NVARCHAR(MAX),
@query AS NVARCHAR(MAX);
SET @cols =
STUFF
(
(
SELECT ',' + QUOTENAME(b."NewName")
FROM (
...
0
votes
2answers
118 views
Show a sum of the column at the end of the column in mssql 2008
In MsSQL 2008, I am trying to show the sum of 3 different columns at their end.
Currently my query returns
this is selected by (@grouping = maingroup,subgroup,subsubgroup,season,vendorid,[01] as ...





