Tagged Questions
-1
votes
0answers
36 views
Dynamically change SQL string
I have a fairly complex SQL string where I'm using tokens to be replaced by actual SQL based on conditions.
I have a "search" bean that holds values from a search page, and based on what values are ...
-2
votes
0answers
40 views
Dynamically create sql table from table list
I'm trying to create a bunch of tables in a schema base on a table list that pulls its table names from another schema
example
schA table1
schA table2
schA table3
dbo tablelist contains this ...
2
votes
1answer
18 views
Webmatrix: Variable table name
I'm using Webmatrix for my project and I want to create a table in my sql-database. I tried this:
var createTable = "CREATE Table Table1 (mitglieder INTEGER, admin BIT)";
...
0
votes
0answers
44 views
Syntax error when using php to serve up dynamic sql pivot table
This dynamic pivot sql runs perfectly in MS Studio, however I can't get it to run with php on the server. I get Incorrect syntax near ','. And Incorrect syntax near 'p'. I've tried every type of ...
0
votes
1answer
41 views
Dynamic Entity Framework query
currently I am building dynamic sql as follows:
//Epressions are stored as String in database
static Dictionary<string, string> TypeToExpression = new Dictionary<string, string>()
{
...
-1
votes
2answers
32 views
Dynamic Page Creation in PHP upon link click
I have a small blog site that I built using php and sql. currently my homepage displays a list of the most recent posts. I want to expand it to so that i can click a link e.g. the title of the post ...
0
votes
0answers
86 views
Pivot Query SQL Server
How can I create a dynamic pivot table, the dynamic parameter is date in a month ( for example month = January, the pivot value date is from 1 until 31)
I only could make a non-dynamic query like ...
0
votes
1answer
46 views
save array in mysql field and search in that field
I have a mysql table looking like this:
id
some_field1
some_field2
variable_fields
datetime
...
Now I want to store more than 1 value in variable_fields like this:
user_id:5;message_id:10
The ...
0
votes
1answer
29 views
Storing dynamic sql's result into a variable
I have a following Cursor:
DECLARE MY_CURSOR Cursor
FOR
SELECT [DB_NAME],[SCHEMA_NAME],[TABLE_NAME],[COLUMN_NAME] FROM dbo.Data_Profile_Stats
Open My_Cursor
DECLARE @DB_NAME ...
0
votes
0answers
99 views
Dynamic queries and Dynamic Where clauses Solution
This week, I found myself in need of some dynamic queries. Now, dynamic queries and dynamic where clauses are nothing new and well documented all over the web. Yet, I needed something more. I needed ...
1
vote
1answer
28 views
Joining with dynamic sql
I have the following dynamic sql query which works as intended. But now I want to join the result with the result of another query on account_id. I tried the usual way by making the query a derived ...
0
votes
2answers
110 views
dynamic SQL (column name variable) with aggregate functions
I have the following columns in a table: IdRec dataora aparat1 aparat2 .... aparat100 and the following code in a stored procedure:
ALTER PROCEDURE [dbo].[GetConsumRealElQRo]
@id_aparat int,
...
1
vote
3answers
83 views
dynamic SQL query giving type error
I am trying to write a simple SP by building dynamic queries and storing in a variable and executing the variable.
I currently get the following error:
Msg 206, Level 16, State 2, Line 16
...
0
votes
0answers
30 views
MySQL prepared statement with unknown number of USING parameters
I'm creating a prepared statement in SQL, and I need to basically select a row and pass the entire row into the prepared statement, then access the row by column inside the prepared statement. Here's ...
0
votes
0answers
18 views
MySQL “EXECUTE” context - can I access variables in the executing context?
I'm writing a query that executes SQL dynamically, and I'd like to know if when I call this SQL using EXECUTE, will I be able to access variables local to the context in which the SQL is executing?
...
1
vote
2answers
52 views
Dynamic SQL - Concatenated FROM table
Long time searcher first time poster.
I am trying to create a dynamic SQL script which concatenates the dynamic part into a string to form the From clause so I can declare the table name only once ...
1
vote
1answer
30 views
Conversion failed when converting date and/or time from character string dynamic sql
I've got a bit of dynamic SQL I'm running that is working fine when I manually write in the variables, but as soon as I then change them from the manually written in to actual variables, I get the ...
1
vote
2answers
63 views
need help making a dynamic query for oracle
So I need to select records from tables that can only be identified at runtime. This is what I've gotten to, but I'm a bit stuck. Any help, suggestions or pointing on how to do this easier/correctly ...
0
votes
1answer
39 views
While using SP_ExecuteSQL I'm generating a boolean error.. any help or suggestions?
I'm very new to SQL, so let me first apologize if my questions come off as trivial or it seems as though I haven't done my work. I am trying to learn how to grasp a lot of these concepts.
Anyway, ...
1
vote
1answer
77 views
Indefinite Number of Joins
I'm trying to join a table with itself indefinite number of times.
Columns are:
+----------+---------+ +--------+--------+--------+---+-----+-----+-----+
| ClientID | Data | | ...
1
vote
1answer
56 views
Dynamic sql - Can't figure out why my code is not echo-ing
I was wondering if I can get some help and show me what I did wrong here since my code will not echo out. The result does not echo out and it is just a blank page. I am just really frustrated right ...
0
votes
2answers
253 views
Dynamic SQL Query w/ Java
I am writing a program that gets records from a database. I would like to create a dynamic query based on 3 variables (studentID, firstName, and/or lastname). Here is my java code which returns ...
0
votes
0answers
13 views
Dynamic SQL entry (phpmyadmin) [duplicate]
I have 4 columns in a database which are named obp1, obp2, obp3 and obp_tot. I want obp_tot to be calculated (and recalculated if i update any of the obp-entries) based on the obp-entries. How do I do ...
0
votes
1answer
90 views
Having dynamic sql in my select statement in SQL Server?
I have a dynamic content questionnaire and I have controls that need to be propulated with SQL?
I was trying to select from the table Questionnaire and run a SQL statement stored in the ...
0
votes
1answer
93 views
Vertical Table, data fetched dynamically
I am trying to make a table, which has:
- The column names on the left side.
- The data vertically.
- Expanding horizontally instead of vertically on next sql row.
In short the exact opposite of a ...
1
vote
1answer
178 views
Multi Column Dynamic Pivot Table
I am trying to get a clean Pivot Table for multiple columns.
Create Input Table
create table #temp (
ORDER_ID INT NOT NULL,
TEST_PLAN INT NOT NULL,
COLLECTION_TYPE INT NOT NULL,
TEST_GRP INT ...
1
vote
1answer
335 views
Dynamic SQL Server Pivot Table
I found a nice script that dynamically creates by column names for my pivot table, but I am not getting the assigned values back into the table. Here is my starting table.
ORDER_ID DSC_NAME ...
0
votes
1answer
53 views
Selection of columns in stored procedure based on parameters
I need to check the parameters in the stored procedure if it is entered then I need to select that
i=j=k=l=m=1;
IF (p_plant_cd IS NULL) THEN
i=0;
END IF;
IF(p_global_duns_nbr IS NULL) THEN
j=0
...
0
votes
1answer
102 views
dynamic sql query with FOR XML Path
I have following sql and when i run this its throw error
Incorrect syntax near '1'.
declare @sql nvarchar(max)
set @sql =N'SELECT PT.P_Name as Prisoner_Type,
...
0
votes
1answer
85 views
TSQL dynamic filters on one column
The table to query has the following columns :
(name varchar(50),values varchar(50),description varchar(50)).
The users want to select multiple names and a range of values for each of these name ...
0
votes
2answers
103 views
Dynamically pull from a database depending on dropdown result
I am currently pulling the information I need from my database but would like the information being displayed to change dependant on the dropdown result. I have done some research and think the best ...
0
votes
1answer
194 views
How do I put dynamic SQL into temptable if I don't know what columns headers are going to be created? [duplicate]
Possible Duplicate:
How can I assign a normal table from a dynamic pivot table?
I have this Query:
DECLARE @Col NVARCHAR(MAX) =
( SELECT ', ' + QUOTENAME(CONVERT(VARCHAR, ...
1
vote
0answers
54 views
How can the origin of SQL in DB2's Dynamic Statement Cache be identified
In an effort to optimize dynamic sql statements sent to DB2, we are saving them to a custome DSN_STATEMENT table. Each record has PROGRAM_NAME, COLLID and STMT_ID, which in static SQL are enough to ...
0
votes
1answer
83 views
To find out in which table the record is missing if a query with multiple tables is given as Input dynamically
I am trying to create an application in Vb.net; In that the user will give a query with multiple tables as input. If no records are returned, My program has to analyze that query and pinpoint in which ...
0
votes
2answers
35 views
I want to get values from table Dynamically filtering the date by class
DECLARE @H_TS MONEY
DECLARE @CLASS VARCHAR(50)='CLASS 04'
DECLARE @TAB_NA VARCHAR(1000)='Classdata'
SET @SQL = 'SELECT @H_TS=SUM(CAST([HISTORY TOTAL$] AS MONEY)) FROM '+@TAB_NA+' WHERE ...
0
votes
1answer
221 views
sp_execute SQL vs exec
as i have read in the following blog...
http://www.sommarskog.se/dynamic_sql.html
dynamic sql is unsafe, that's why we have sp_execute SQL.
could i ask, is there any way to make sp_execute run a ...
1
vote
3answers
80 views
How to build the query dynamically
I am creating a query like this:
v_sql:=' SELECT abc FROM '||v_table||'
WHERE area IN ('''||v_area||''')
AND (
('''||p_supp_nbr||''' IS NULL)
OR ...
0
votes
1answer
287 views
Dynamic sql query in SSRS (Sql Server Report Server 2012)
I have created in vs2010 a report with the name "clients", which shows a list of clients with the following attributes:
clientID,firstname,lastname,adres,country,birthday
I have created this report ...
2
votes
1answer
355 views
Dynamic SQL Server 2008 Query Join
Hi I have the following table:
CREATE TABLE #Test
(
ProductID int,
MainMasterFeatureID int,
--MasterFeatureValue Varchar(100),
ChilFeatureName varchar(100),
...
0
votes
3answers
590 views
Variable table name using dynamic SQL in C#
I've been looking around for a way to enter a variable table name and it seems the best way is to use dynamic sql, although it can lead to SQL injection. Can anyone demonstrate how this is done in C#? ...
0
votes
2answers
181 views
Dynamic SQL with variable number of table joins
My table icdClm is a junction table between a table with person demographics and another table that lists various codes of interest related to that person. I'd like to be able to join these tables a ...
1
vote
2answers
126 views
oracle - mixing SQL code with PLSQL when no bindings in WHERE statement
I am trying to write a very simple sql script:
select * from table_X;
and I would like to see the results in oracle sqlplus, if there are any. These results are important for further analysis.
Also to ...
0
votes
0answers
138 views
Dynamic calculation in sql based on new columns which contain specific values
I'm looking for a solution to implement an dynamic sql statement. I have table containing some information about some products. Further the table contains columns for the planed yield for the specific ...
1
vote
2answers
56 views
MYSQL: Dynanic collums in mysql --> first, last name to full name:
I was wondering if you have two collumns for lets say
first name.
last name.
what you store in the data base.
Kan you create a 'dynamic' collumn 'fullname' in the database. that autmaticly creates ...
2
votes
2answers
158 views
In plpgsql, how can I create and execute a command-string using on a variable number of identifiers?
In postgres 9.1 I'd like to create a function that takes an index name, a table name and a variable number of columns, constructs an index, and then does some other things.
My current approach is to ...
0
votes
2answers
88 views
SQL Server - Exec sql statement across all database in all instances
While ago I asked a question about how to execute dynamic SQL statement across all database in a specific instances. The answer was to use sp_MSForEachDB.
Now, I am facing another issue and need to ...
1
vote
1answer
207 views
SQL query to rebuild a table using its dynamic row data for column names
My existing table is like this:
ID Grant Subtotal Month
1 Hatch 144.56 Nov-2012
2 NIH 240.9 Nov-2012
3 NSF 100.7 Nov-2012
4 Other 276.67 ...
3
votes
1answer
107 views
Replace dynamic text SQL
Can anyone help me with a little problem I can't solve. I am trying to update a bbcode tag in php_text
Exemple [i] => [i:rlj7bc53]
Exemple [u] => [u:rlj7bc53]
Exemple [b] => [/b:rlj7bc53]
...
0
votes
1answer
523 views
PLSQL : How to save a dynamic SQL query result into a two dimension array?
CREATE TYPE VarArray AS VARRAY(50) OF VARCHAR2(50);
CREATE TYPE VarAArray AS VARRAY(50) OF VarArray;
Declare
myTable VarAArray VarAArray();
tableName Varchar2(50);
Begin
-- I want to save ...
0
votes
1answer
34 views
How to make webpage build dynamically based on previous clicked link?
I am setting up a website where you click a category which takes you to a page listing various items under that category. How can I make it where after a user selects a category the webpage is ...

