4
votes
5answers
163 views
+50
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
3answers
78 views
How to create a temporary MySQL table with a UUID name in Coldfusion?
I'm using Coldfusion8 and MySQL 5.0.91 and am trying to create a temporary table, import some data from CSV, validate, store in database and drop the temp table.
I can do all steps in MySQL directly, ...
1
vote
2answers
25 views
How to select from a table with criteria needing to match a temporary table?
I have two tables. One contains articles, the other one price quotations. I'm trying to select [EAN] from the articles table and price from the quotation table if dimensions in both tables are ...
0
votes
0answers
24 views
How to use an “IN” clause with an array?
I am trying to do this:
SET @my_array = (54,24,155,76,96,255,...);
INSERT INTO some_table WHERE something IN @my_array...;
DELETE FROM some_table WHERE something IN @my_array...;
INSERT INTO ...
0
votes
0answers
12 views
temporary tables not working if database dont have insert permission
In my application i have used temporary tables but now my database server has been changed and new server don't have insert permission for tables.Now my temporary tables not working.
Is it possible ...
0
votes
0answers
186 views
MySQL Hibernate delete bulk joined-subclass , temporary table locks the table
I am using PlayFramework (1.2.5) , there is one class MedicalLog extends class Log , as follows :
@Entity
@Inheritance(strategy=InheritanceType.JOINED)
public class Log extends Model { ... }
and
...
0
votes
1answer
237 views
How MySQL put all NEW/OLD trigger data to temporary table and use in procedure?
How to put the NEW/OLD data into temporary table without filed name.
I've tried create trigger, procedure like this but it fails:
CREATE TRIGGER `after_insert` AFTER INSERT
ON `master`
FOR EACH ROW ...
0
votes
1answer
81 views
MySQL Temp Tables or View?
I got 3 tables that have stored common data from registration from users: languages, countries, nationalities. Each table have fields: id and name.
I got a main table users where it stores almost all ...
1
vote
1answer
287 views
Stored procedure mixing results into temp tables from different invokations
I'm using a stored procedure in Mysql that creates 3 temporary tables that store records from database's tables, and then used to select the final result from those subset of stored records.
The ...
0
votes
0answers
44 views
MySQL cursor implementation - seems very inneficient
Using MySQL 5.0.95 (tragically), I am building a slope one implementation.
I have a table with 34M rows that i need to evaluate for slope one ratings. The table is fairly sparse, consuming only ...
0
votes
1answer
187 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
1answer
160 views
Temporary Tables Not Working in PHPMyAdmin
I run this query
CREATE TEMPORARY TABLE usercount SELECT * FROM users
I get this message
Your SQL query has been executed successfully ( Query took 0.1471 sec )
But when I try to access the ...
0
votes
0answers
109 views
MySql :: using temp table in while loop
Can I use Temp table within While Loop in MySQL
like :
WHILE (@CurrIndex <= @RowsCount) DO
SELECT FileReference,FileID,AllowDelete,ReferenceID
FROM deletefilesreferences LIMIT 1;
...
0
votes
2answers
78 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 ...
0
votes
1answer
436 views
MySQL Stored Procedure, Memory Temporary Table too slow?
I'm trying to write a stored procedure in MySQL. For complicated reasons I have an aggregate query with a bunch of joins to look object ids, and then do another query with more joins (including same ...
3
votes
1answer
148 views
alternative to temporary tables
what I need (and got with temporary tables or views is this):
numcasos valcount1 valcount2
-------- --------- -----------
0 2 1
1 1 2
...
0
votes
1answer
74 views
PHP: Remove Rows Not in Large List
My application needs to change a value in a table if it is not in a very large set (20,000 items) that come in through an XML API. Obviously, it would be easy to create a solution that would be very ...
5
votes
1answer
333 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
vote
1answer
46 views
introducing records on the fly in mysql
Is it possible in MySQL to create records on the fly without first having to create a temporary table and then populate it?
I'm thinking about something like this (syntactically incorrect) example:
...
-1
votes
1answer
158 views
MySql, temp tables, error 1422
My problem is:
Im using 3 function and 1 SP to make a convertion of numbers to words... when i call the SP from one of my functions
CALL extenso_trata_grupo(`ivalor`, ' Triliao', ' Trilioes', ...
2
votes
4answers
7k views
How can I simulate an array variable in MySQL?
It seems that MySQL doesn't have array variables. What do I use instead? The question I linked to suggest using a set type. What would be the set-based idiom equivalent to foreach? Also, what about a ...
0
votes
1answer
73 views
avoiding creation of temporary or permanent tables
I want to manipulate with a table, but the only solution I found so far is to create some tables first and join them together to the desired results.
I'm trying to avoid creating tables and dropping ...
0
votes
1answer
351 views
Dropping Temp Table At End Of Stored Procedure In MySQL
Do I need to add DROP TEMPORARY TABLE IF EXISTS data; at the end of the stored procedure even though I have the check at the top? Is there a performance implication?
CREATE DEFINER=`TEST`@`%` ...
3
votes
1answer
753 views
PostgreSQL equivalent of MySQL memory tables?
Does PostgreSQL have an equivalent of MySQL memory tables?
These MySQL memory tables can persist across sessions (i.e., different from temporary tables which drop at the end of the session). I ...
2
votes
2answers
299 views
MySQL: How to update SUM() values of children to a parent row in the same table?
I need to get the sum values of my child rows and update that data on the parent row.
I've got this for as shown below but ran into error #1111 (Invalid use of group function).
CREATE TEMPORARY TABLE ...
2
votes
1answer
1k views
Define keys in temporary table creation
How do I define the keys for a temporary table that is being created from a SELECT statement?
I have:
CREATE temporary TABLE _temp_unique_parts_trading
engine=memory AS
(SELECT ...
1
vote
3answers
763 views
Creating and using temporary tables
I have just learnt about temporary tables and using them has given me some really nice speed increases in some of my big queries.
The problem I have is that when I create the table, it doesn't last ...
0
votes
1answer
116 views
Mysql insert array from another table and fill the rest with default values
here's my question:
I have a table TRUST(id INT, trustlevel INT) which contains records (1, 5) and (2, 3). I also have an array containing ids (1, 2, 3, 4, 5).
What I want to achieve is to insert ...
0
votes
1answer
150 views
How to convert a Coldfusion loop constructing MySQL synatx into a MySQL stored procedure?
I'm trying to move a product search from Coldfusion into a MySQL stored-procedure.
The search has about 20 criterias and is a vanilla-function of the site it's in, so wanted to convert it to a ...
0
votes
2answers
428 views
TEMPORARY TABLE doesn't exist, not created as expected? MYSQL
-- --------------------------------------------------------------------------------
-- Routine DDL
-- --------------------------------------------------------------------------------
DELIMITER $$
...
1
vote
3answers
353 views
how to return an object (from a MySQL temporary table) into a Coldfusion stored procedure?
I'm calling stored procedure in Coldfusion8/MySQL which gets 3 types of min and max prices from products table.
I'm having problems returning the temp table back to MySQL. The below code only returns ...
0
votes
1answer
144 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;
...
1
vote
1answer
331 views
Avoid temp table with group by on multiple columns from different table
Is it possible to create an index such that a temp table is not created where the group by is grouping on two or more columns from different tables?
Example:
SELECT T1.c1, T2.c2, COUNT(*)
FROM T1
...
2
votes
2answers
158 views
Temporary table bogging down database — how to optimize?
I apologize in advance if this question is too specific, but I think that it is a fairly typical scenario: join and group bys bogging down the db and the best way to get around it. My specific ...
0
votes
2answers
103 views
How to select available date slice
I am trying to make a simple reservation system. I have a table called reservation that holds reservation time, and id of the customer who reserved it (see below for schema). And I have another table ...
2
votes
3answers
112 views
MySql subselects and counts based on counts
Here is model of my table structure. Three tables.
---------------- ---------------------------- -------------------------------
|possibilities | |realities | ...
1
vote
0answers
300 views
List of temporary table columns (MySQL)
I need to get list columns of some temporary table (MyISAM) in MySQL in view like 'number column' - 'name column'.
I need to know number of column with specific name. In advance, I can't know what is ...
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 ...
0
votes
2answers
1k views
Create temporary table in MySQL from Java
I have this:
public static void createTemporaryTable() {
Statement s = null;
sentence = "CREATE TEMPORARY TABLE Book (ISBN int NOT NULL, " +
"title varchar(45), author ...
1
vote
1answer
393 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 ...
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 ...
0
votes
0answers
289 views
mysql query speed. why query from memory tables with tmp table slower than direct select?
i'm a bit confused of such mysql behaviour.
one query, with ORDER BY clause creates tmp table (as shown in show profile) and runs faster that the same query without order by with doesn't create tmp ...
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 ...
1
vote
1answer
78 views
Backup data into another table
I got a error like "Unknown table 'matched_temp'" when execute the following stored procedure.
DELIMITER $$
DROP PROCEDURE IF EXISTS `apms`.`sp_partition_parkinout` $$
CREATE ...
0
votes
1answer
247 views
Temporary Table and Left Joins not showing results as expected
I'm really hoping someone can help me with this. I have a number of product attribute types that users can select from to refine the products that are returned to them on screen. What I'm trying to ...
3
votes
2answers
727 views
How can I refer to a TEMPORARY table more than once in the same query?
the MySQL docs say: "You cannot refer to a TEMPORARY table more than once in the same query."
I know this has been asked before. But I can't find a specific solution for the following.
I'm doing a ...
0
votes
1answer
53 views
clustered table query in mysql
I have a table in my mysql database which has a column score and a column cluster.
score is float and cluster may be NULL or integer.
NULL means the row belongs to no cluster, an integer means it ...
0
votes
1answer
562 views
Reducing Tempoary Tables Created on Disk MYSQL
Our site runs some pretty large earnings queries for our reports feature of the user side. The larger accounts are taking anywhere from 5-20 seconds to load on some pages. When these queries run ...
0
votes
3answers
103 views
MySQL Update on Huge Table
I want to update a table with 90 million records.
For example:
UPDATE huge_table set field3 = CONCAT_WS(' ', field1, field2)
The update locks the table for a while and I want to minimize the ...
0
votes
1answer
1k views
Avoid MySQL 'using temporary' in certain cases
I have two tables, users and followers:
Table users:
id INT, PRIMARY_KEY
name VARCHAR
joined INT
This table is indexed on id and joined.
Table 'followers':
user INT
...




