0
votes
3answers
250 views

How do I execute a sql statement through a variable (dynamic sql) that tries to do an insert into a variable table? [duplicate]

Possible Duplicate: How to use table variable in a dynamic sql statement? If I do what I wanna do with a TEMPORARY TABLE, it works fine: DECLARE @CTRFR VARCHAR(MAX) SET @CTRFR = 'select ...
2
votes
2answers
150 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
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
153 views

Pagination from Temporary Table

If I paginate from a temporary table, when do I drop the table? Does/can the table go into memory once it hits the front end so that the table can be dropped immediately? Or does it need to "hang ...
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
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 ...