Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
194 views

Slow DROP TEMPORARY TABLE

Ran into an interesting problem with a MySQL table I was building as a temporary table for reporting purposes. I found that if I didn't specify a storage engine, the DROP TEMPORARY TABLE command ...
3
votes
3answers
55 views

In MySQL, how can I do a DELETE based on the result from a table where I did an INNER JOIN with the same table?

OK, so I do suck at MySQL, but here is basically what I want to do: delete from course_plan_relationships where course_plan_relationships.id not in ( select course_plan_relationships.id from ...
3
votes
1answer
179 views

Getting the avg of the top 10 students from each school

We have a school district with 38 elementary schools. The kids took a test. The averages for the schools are widely dispersed, but I want to compare the averages of JUST THE TOP 10 students from ...
3
votes
8answers
17k views

TSQL Writing into a Temporary Table from Dynamic SQL

Consider the following code: SET @SQL1 = 'SELECT * INTO #temp WHERE ...' exec(@SQL1) SELECT * from #temp (this line throws an error that #temp doesn't exist) Apparently this is because the exec ...
2
votes
1answer
21 views

Is using Table variables faster than temp tables

Am I safe to assume that where I have stored procedures using the tempdb to write a temporary table, I'd be better off switching these to table variables to get better performance?
1
vote
1answer
34 views

MySQL temporary table SELECT COUNT(*) returning varying results

I have a problem with temporary tables in mysql. I created this temporary table: CREATE TEMPORARY TABLE IF NOT EXISTS tmp_general_detalle_entrada_salida ( numero_registro INT(10), ...
1
vote
2answers
145 views

Temporary tables in stored procedure for Oracle

I have a stored procedure that runs fine on MS SQL and DB2. But cannot get it to run on Oracle as it uses temporary tables created within the procedure. I would like to know any suggestions on my ...
1
vote
1answer
61 views

sql query condition on temporary column

I pondered on this one a little bit. Found a few question on SO but none of them addressed my problem. What I am trying to do is compare two dates in a table, I am returning the greater of the two ...
0
votes
2answers
20 views

Is it possible 2 MySQL connections crash when they use the same temporary table name?

My call sequence to MySQL is like this: Connection1: create temporary table 'temp_table'... Connection2: create temporary table 'temp_table'... (already exists, crash???) Connection1: drop ...
0
votes
2answers
155 views

dropping a global temporary table

2 Separate questions. I am using this script to drop a table [SOLVED] BEGIN EXECUTE IMMEDIATE 'DROP TABLE_NAME'; DBMS_OUTPUT.PUT_LINE ('Global table TABLE_NAME Dropped'); EXCEPTION ...
0
votes
3answers
179 views

T-SQL: Where xxx IN temporary table

I have a temp table and want to check in a where clause wether a certain id/string is contained in the temp table. Select... WHERE MyId IN MyTempTable I get a general error in MS SQL Management ...
0
votes
3answers
210 views

SQL Server 2005 - query with case statement

Trying to put a single query together to be used eventually in a SQL Server 2005 report. I need to: Pull in all distinct records for values in the "eventid" column for a time frame - this seems to ...
0
votes
1answer
2k views

How to create a temporary table in MySQL to output table data as a CSV file?

I've got a script for creating a CSV file from a database table, which works fine except that it outputs all the data in the table, and I need it to output data only for the current logged in user. ...