Tagged Questions
0
votes
1answer
16 views
Drop temporary tables in a single session
How to drop the temporary tables in procedures for the same session.
Because I am facing a problem regarding temporary tables in Postgres Sql. If two procedures:
A() having a temporary table say ...
0
votes
1answer
25 views
Temporary Tables in Postgres Sql
I am facing a problem regarding global temporary tables in Postgres Sql. If two procedures:
A() having a temporary table say temp(id, name)
B() having a temporary table say temp(id, name, address)
...
0
votes
2answers
81 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 ...
2
votes
1answer
191 views
Medium-term temporary tables - creating tables on the fly to last 15-30 days?
Context
I'm currently developing a tool for managing orders and communicating between technicians and services. The industrial context is broadcast and TV. Multiple clients expecting media files each ...
1
vote
2answers
202 views
A dynamic content solution for a flexible mysql table
I've been thinking a lot trying to figure out how to make a flexible system to hold many values trying to avoid the option of adding more fields to table in the future.
The only thing I could think ...
2
votes
2answers
235 views
How is a stored procedure processed by Sql Server and .Net
I have been using a stored procedure for more than 1.5 years. But I've never considered how data is retrieved from the UI or within another stored procedure.
When I write a simple stored procedure.
...
0
votes
1answer
135 views
DML statistics on a table
We're using PostgreSQL 8.2.
In our application, we heavily use a temporary table (REPORTTEMP) for report
generation purpose. All type of DML statements are performed in this table, but UPDATE
...
1
vote
3answers
3k views
Oracle 10g temp tables
I'm trying to convert the permanent tables used in a stored procedure to global temp tables. I've looked at the stats on these permanent tables and some have tens of millions of rows of data and are ...
1
vote
4answers
16k views
Local Temporary table in Oracle 10 (for the scope of Stored Procedure)
I am new to oracle. I need to process large amount of data in stored proc. I am considering using Temporary tables. I am using connection pooling and the application is multi-threaded.
Is there a ...
4
votes
3answers
98 views
Pulling items out of a DB with weighted chance
Let's say I had a table full of records that I wanted to pull random records from. However, I want certain rows in that table to appear more often than others (and which ones vary by user). What's the ...
3
votes
2answers
4k views
Serious MySQL Performance Issue (Joins, Temporary Table, Filesort…)
I've got a users table and a votes table. The votes table stores votes toward other users. And for better or worse, a single row in the votes table, stores the votes in both directions between the two ...
11
votes
4answers
19k views
What is the difference between a temporary table vs global temporary table in Oracle?
I have heard these two terms "temporary table" and "global temporary table" used pretty much in similar context.
What is the difference between the two?
0
votes
2answers
602 views
How should I temporarily store rows in a stored procedure?
In essence I'd like to store some rows in a temporary variable for the life of a procedure in MySQL.
My procedure will grab a column of foreign keys at the beginning of the procedure. Once I'm done ...