Tagged Questions
1
vote
0answers
30 views
Using a Temporary Table in a Stored Procedure
I am trying to create and then call on a temp table in a stored procedure. What I am trying to accomplish is combining yearly data with quarterly data. For example: I have a field that has data for ...
6
votes
5answers
200 views
Duplicate all rows in a table and prevent duplicate keys
I am tring to do this
Get all rows in a blogs named table.
Copy them in a temporary database
Edit the language field of this temporary table records
Insert into the blogs table
And I'm trying it ...
0
votes
1answer
42 views
SQL script to check a value then if found increment a field by a value of 1
Im trying to write a script that will pull the information from a table called 'bookings', this contains a column that gives the length of each booking called 'hours'. Values in this column are shown ...
1
vote
2answers
75 views
Drop set of columns with only null values from a table using SQL Server 2008
Take for example this example as an illustration so you can see what Î'm trying to do.
This is how the final table of the pivoted information looks like.
Create Table [#Comparative]
(
Branch ...
0
votes
0answers
21 views
using @temptable or #temptable and droping them [duplicate]
what is the difference between @temptable and #temptable.
I have used the #temptable and when I tried to access it in Microsoft reports(.rdlc) the column name of the store procedure were not visible.
...
1
vote
2answers
42 views
SQL Generate Missing Records in SELECT
Using MS SQL Server 8.0.760 (2000)
I have a Table like this:
Table A
Day | Hour | Value
2012-10-01| 12 | 780
2012-10-01| 14 | 678
2012-11-02| 08 | 123
2012-11-02| 09 | 473
Expected ...
1
vote
2answers
142 views
Creating temporary tables in SQL
I am trying to create a temporary table that selects only the data for a certain register_type. I wrote this query but it does not work:
$ CREATE TABLE temp1
(Select
egauge.dataid,
...
0
votes
1answer
351 views
Insert Data vertically into temp table using cursor
As above mentioned. I have created 2 temp tables in SQL and need to insert vertically to complete all columns but as I understand, you can only insert data horizontally?
Is there a way around this?
...
0
votes
0answers
316 views
How to allow temporary tables to accept null values
If you create temp tables using "insert into" in SQL Server it uses the first insert to determine whether a column accepts null value or not. if the first insert has null value the column become ...
0
votes
2answers
131 views
Update from Temp Table
Query:
SELECT ID, T.c.value('@Address', 'nvarchar(20)' ) as Address
INTO #TMP
FROM TABLE1
CROSS APPLY XMLData.nodes('/Document') AS T(c)
UPDATE TABLE1
SET HomeAddress = (SELECT TOP 1 t.Address
...
0
votes
2answers
162 views
DB2 9.7 SQL syntax, what am I doing wrong?
For one reason or other which are out of my control I am attempting to simply pull data over the past 12 months. However, essentially down to the size of data, I have to query each day into a temp ...
0
votes
1answer
196 views
Temporary table definition in MySQL
I have a stored procedure which uses temporary tables so that I can summarize the sales of all the products within a certain product category. When I tried to run the code it failed. I search on ...
0
votes
2answers
82 views
MySQL creating view which is union of two tables with one tables values prefixed
I have authentication system which gets permissions from MySQL database.
CREATE TEMPORARY TABLE db.temp (authority VARCHAR(100));
INSERT INTO db.temp (authority) SELECT blog.authors.id FROM ...
1
vote
1answer
64 views
Turn SQL Server table variable into real table
I have a temporary table created with:
DECLARE @tbl_fk_errors TABLE (
id int Primary Key IDENTITY(1,1)
, tbl_id int
, tbl_name nvarchar(128)
, tbl_record_id int
, tbl_field ...
0
votes
1answer
285 views
How to get an object ID from temporary table using object_id function
I have created a table as below:
create table #tab
(
id int
)
Now, I want to get an object id of the table.
I tried on the same session:
select object_id( "#tab" )
and
select object_id( ...
2
votes
1answer
180 views
SQL Server 2008 - #tmp table throws error when run within an exec command [duplicate]
Possible Duplicate:
TSQL Writing into a Temporary Table from Dynamic SQL
ALTER PROCEDURE [dbo].[usp_ServicesStats1](@PERIOD VARCHAR(30) )
AS
BEGIN
-- SET NOCOUNT ON added to prevent ...
5
votes
1answer
336 views
Not getting expected output while using Temp Table or Cursor in MySQL
I'm doing some POC. I've written one stored procedure in MySQL. I'm using MySQLWorkbench for database operations like creating new table, stored procedures, query execution etc. I'm observing some ...
-1
votes
3answers
2k views
Couldn't create temp table from select query if result empty
I want to crate a temp table from select query (My table has many columns, therefore I don't want to create the temp table manually)
I use the following query:
SELECT * INTO #TempTable
FROM MyTable
...
0
votes
1answer
108 views
SQL saving to a Temporary table is not working
i have the following sql query
SELECT P.catalogid,
Sum(numitems) numitems,
Sum(ignoreditems) ignoreditems,
P.supplierid,
P.cname,
P.cprice,
...
0
votes
1answer
89 views
Copying Rows of Table0 to Table2 Where Same Rows Do Not Exist in Table1 (PostgreSQL)
Could anyone please tell me which one of the following is more efficient? I have tens of millions of rows to process, and performance is critical.
In the second example, table0 is a temporary table, ...
1
vote
2answers
640 views
Scope of table variable within SQL cursor
If I run the below in MS SQL 2008 R2 I get an unexpected result.
create table #DataTable (someID varchar(5))
insert into #DataTable
values ('ID1'),('ID2'),('ID3'),('ID4'),('ID5')
declare @data ...
0
votes
1answer
195 views
How to copy both structure and contents of PostgreSQL table, but duplicate sequences?
I'm trying to setup temporary tables for unit-testing purposes. So far I managed to create a temporary table which copies the structure of an existing table:
CREATE TEMP TABLE t_mytable (LIKE mytable ...
1
vote
1answer
256 views
SQL - updating records and keeping an audit trail of the changes
I have a table in which 2 columns are to be updated based on the existence of records in several other tables. Also, need to use temporary table for this purpose. And, finally am required to keep an ...
0
votes
1answer
413 views
How to delete all the records in a declared table inside a storedprocedure
I am creating a email queue to handle email sending. From that queue I'm taking X number of records and send emails according to the type field of the records.
For that I have declared a table inside ...
1
vote
6answers
9k views
Inserting data into a temporary table
After having created a temporary table and declaring the data types like so;
CREATE TABLE #TempTable(
ID int,
Date datetime,
Name char(20))
How do I then insert the relevant data which is ...
1
vote
3answers
431 views
Error Using Temporary Tables With Same Names SQL Server
Here is my scenario. (Following is my stored proc taking @date as an input parameter)
DECLARE @date DATE
If object_id('tempdb..#TempList') is not null drop table #TempList
go
Create table #TempList ...
2
votes
2answers
153 views
temporary tables using RMySQL
Is there a way to create a temporary table using the RMySQL package? If so what is the correct way to do it? In particular I am trying to write a dataframe from my R session to the temporary table. ...
0
votes
1answer
145 views
temporary table in mysql being locked
So in a query I am using I am creating a temporary table. This is the query:
SELECT u1.url,u1.id,u1.domain FROM urls u1 JOIN
(create new table here) u2 ON u1.id = u2.url_id
GROUP BY u1.domain;
...
0
votes
1answer
919 views
Constructing a temporary table in Oracle SQL
I am trying to make a sub-table that "stores" a decode between two values, because I need to use that decode multiple times. Let's say these are my tables:
Table Person
Name Number_name
Jeremy ...
0
votes
2answers
1k views
Auto Increment in Temporary Table
I'm trying to create a Temp Table that has a key field that auto increments. But I keep running into a syntax error.
Here's what I'm trying:
CREATE TEMPORARY TABLE
RETURN_ARTISTS
(KEY ...
1
vote
1answer
398 views
Temporary table doesn't exist error
Couldn't call stored procedure with temporary table:
DELIMITER $$
DROP PROCEDURE IF EXISTS `summary_daily_reports`$$
CREATE PROCEDURE `summary_daily_reports`()
BEGIN
DROP TEMPORARY TABLE IF EXISTS ...
1
vote
1answer
1k views
Performance difference between Views and Temporary tables [closed]
Is there any major difference in the performance of the Views and Temporary tables. I have situation like to migrate data from one database to the other. I have to extract the source data from views ...
1
vote
5answers
2k views
Temporary table record limit in Sql server
Is there any limits for the record in the temporary table.. I have tried with 1.3 million records.. may be i have to deal with billions in the future as the application demands.. Is it possible? If i ...
0
votes
2answers
786 views
SQL Server doesn't allow to execute subquery as dynamic SQL
I tried to make a dynamic SQL which gets all tasks for some users
The procedure [GetAllSubExecutorsByUserId] returns IDs of all subalterns of curent user
I write these IDs into a temporary table, and ...
0
votes
3answers
2k views
return temporary table from SQL stored procedure
I wrote this stored procedure:
USE [FAB28]
GO
/****** Object: StoredProcedure [dbo].[spPLCIOFilter2] Script Date: 12/06/2011 08:00:28 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
...
2
votes
1answer
1k views
When will data in Oracle session temporary table get deleted?
I have read that in session tables the data survives the commit process. In words of Ask Tom.
the ON COMMIT PRESERVE ROWS makes this a session based temporary
table. rows will stay in this ...
0
votes
1answer
450 views
temporary table not returning result set in MySQL stored proc
I have a stored proc which inserts rows from a view with ranks into a temporary table.
The temp table is created before I run a cursor loop that inserted values, and SELECT'ed after the loop is done.
...
5
votes
4answers
6k views
Is there a way to get a list of all current temporary tables in SQL Server?
I realize that temporary tables are session/connection bound and not visible or accessible out of the session/connection.
I have a long running stored procedure that creates temporary tables at ...
1
vote
2answers
3k views
Why are temporary tables not removed from tempdb in SQL Server?
I have created one stored procedure with 7 temporary tables and each temp table is dropped at the end of their own work.
I am calling the SP from one web service and same web service we are used for ...
0
votes
2answers
2k views
Checking if column exists in temporary table always returns false in SQL Server
I have the following Execution statement which creates a table (using data from another procedure), inserts the values into a temporary table, adds an image column (because they cannot be included in ...
1
vote
4answers
2k views
SQL Server, Problem creating temp table in TSQL
Hi when i execute the following TSQL, i get the error message below. But there is nothing wrong with the SQL syntax is there?
create table #tb ([t1] tinyint, [t2] varchar(50))
insert into #tb values
...
1
vote
2answers
1k views
SQL Insert to Temp Table Without Specifying Values?
I have a stored procedure that currently uses one CTE. This one works like so:
WITH MY_CTE AS
(
// Logic here uses SELECT * from a single table.
)
SELECT *
INTO #Tasks
FROM MY_CTE;
I now have a ...
1
vote
2answers
1k views
Using a temporary table to replace a WHERE IN clause
I've got the user entering a list of values that I need to query for in a table. The list could be potentially very large, and the length isn't known at compile time. Rather than using WHERE ... IN ...
3
votes
2answers
588 views
What's the scoping rule for temporary tables within exec within stored procedures?
Compare the following stored procedures:
CREATE PROCEDURE testProc1
AS
SELECT * INTO #temp FROM information_schema.tables
SELECT * FROM #temp
GO
CREATE PROCEDURE testProc2
AS
...
2
votes
4answers
1k views
Create temporary table in CakePHP and load it as a Model
My plan is to create a temporary table using the $this->Model->query(); method then load it as a Model but I'm getting an error staying "Missing Database Table". Turning on debug to level two shows ...
0
votes
2answers
2k views
trigger and transactions on temporary tables
can we create trigger and transactions on temporary tables?
when user will insert data then , if it is committed then the trigger would be fired , and that data would go from the temporary table into ...
0
votes
4answers
2k views
Session-global temporary tables in SQL Server
In SQL Server, temporary tables with a name like #temp has a local scope. If you create them in your session, everything in your session can see them, but not outside your session. If you create such ...
0
votes
1answer
624 views
Store result set in memory over multiple queries?
I thought CTEs were perfect for my stored procedure, until I found out they can only be referenced in ONE query (ie the query immediately following the CTE). They now seem fairly pointless.
I'm ...
2
votes
2answers
435 views
What are the use cases for temporary tables in SQL database systems?
what are the main purposes for which temporary tables are used? I want to know the practical and commercial uses of temporary tables in actual softwares working in small and large scale companies.
0
votes
2answers
5k views
SQL CTE in a View vs Temp Table in a Stored Procedure
Please bear with me -- I know this is complex.
I have a table that contains apartments, and another that contains leases for those apartments. My task is to select the "most relevant" lease from the ...



