Re: Memory Problem with 1 DB. Other DB ok
I used the OPENQUERY function. Which Forces "order by" to be performed at MySQL
OLD Method - Theoretically works, except when it doesn't
-----------
select id
into #temp_MySQL_ID
from MYSQL_WEB_PROD...wp_users
NEW Method. Forces "order by" to be performed at MySQL
-------------------------------------------------------
SELECT *
into #temp_MySQL_ID
FROM OPENQUERY(MYSQL_WEB_PROD, 'SELECT id FROM wp_users order by id')
Subject
Views
Written By
Posted
3599
January 22, 2015 11:15PM
1958
January 24, 2015 11:25AM
1999
January 25, 2015 11:26AM
2170
January 25, 2015 12:06PM
1884
January 25, 2015 12:09PM
1896
January 26, 2015 12:14PM
1933
January 26, 2015 12:25PM
1941
January 27, 2015 09:45PM
2005
January 28, 2015 12:46AM
1855
January 28, 2015 07:48AM
1967
January 28, 2015 10:39AM
2268
January 28, 2015 02:27PM
1864
January 28, 2015 02:39PM
2033
January 28, 2015 03:00PM
1930
January 29, 2015 06:08PM
1909
January 29, 2015 06:10PM
Re: Memory Problem with 1 DB. Other DB ok
1992
January 29, 2015 08:49PM
1955
January 29, 2015 10:32PM
1923
January 29, 2015 10:33PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.