![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#21
| |||
| |||
|
|
From: Carsten Haese <carsten (AT) uniqsys (DOT) com Thanks, and I'm glad I can't hear you try to pronounce my name ![]() I agree that Python is better than Perl, and IMHO Python is better than PHP, too. I wish IBM were putting as much support behind Python as they are putting behind PHP. Well, at least they link to my SourceForge page from the IDS page, and that's better than nothing. -- Carsten Haese http://informixdb.sourceforge.net |
#22
| |||
| |||
|
|
From: Ben Thompson <ben (AT) nomonitorsoftspam (DOT) com It would be useful to a developer with a MacBook laptop or similar so that he could develop away from his office. Also university students. It would be moderately useful to me. I'm not sure how big the market is for IDS on OSX server. I suppose the question could be "why not?" if it's doesn't take too much developer time to port across. Ben. |
#23
| |||
| |||
|
|
From: DA Morgan <damorgan (AT) psoug (DOT) org Ian Michael Gumby wrote: Unfortunately not. Silly me, I seem to recall that Larry Ellison sits on Apples board. Or am I dating myself? ;-) A certain Apple exec once joked to me (again, many moons ago) that if there were a database port to Apple, it would probably be an Oracle port since Steve and Larry are such good friends. Apple certified Panther, 10.3.6, for Oracle 10.1.0.3 but then failed to follow through with Tiger ending, for the second time, their fainted hearted move into the enterprise data center. There are rumors that the internal battles at Apple have led them to again make the move and that Oracle 11g will have support for the MacOS but there is nothing official. It would be great if Apple finally decided it wasn't just a consumer products company because they have some of the best servers around. |
#24
| |||
| |||
|
|
Its a good thing you're not running a for profit software organization. A lot of people don't appreciate the costs in maintaining multiple ports across multiple platforms. Unless you can show the revenue generation against the cost, or if its done for a strategic/marketing decision, you don't waste your money/time/effort on a non-viable port. We're not talking about a proof of concept port like the PS3/cell port, but a viable released,maintained port. If IBM is doing one, then there's a reason. And its going to have to make money or have the expectation of making money. |

#25
| |||
| |||
|
|
I hope they release a free Express version and put it out at all the Universities. |
|
Anything come of this? It was announced at IOD this week that a Mac port of IDS is in progress, targeted for the next point release of Cheetah expected next year. Regards Guy |
#26
| |||
| |||
|
|
BTW, when will Oracle get their act together and do temp tables right? Anyone who's had to suffer through their bastardized "global" temp tables can appreciate that a *real* database allows users to create temp tables on the fly as part of their adhoc queries. __________________________________________________ _______________ |
#27
| |||
| |||
|
|
I hope they release a free Express version and put it out at all the Universities. Once available the Mac port is planned to be one of the free Developer Edition platforms. Guy ----- Original Message ---- From: "Gentsch, Samuel" <SAM_GENT... (AT) homedepot (DOT) com To: Guy . <gbower... (AT) yahoo (DOT) com>; John Carlson <jwcarls... (AT) yahoo (DOT) com.invalid>; informix-l... (AT) iiug (DOT) org Sent: Thursday, October 18, 2007 5:08:27 AM Subject: RE: IDS on a Mac? Anything come of this? It was announced at IOD this week that a Mac port of IDS is in progress, targeted for the next point release of Cheetah expected next year. Regards Guy Woo Wooo! That rocks.... I hope they release a free Express version and put it out at all the Universities. I have been reading about many College stores selling more Macs than PCs. It would be interesting to prime the waters with IDS at that low level. Too bad it is not feasible to con Apple to install it in Leopard as a default software, like perl. Sam __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection aroundhttp://mail.yahoo.com |
#28
| |||
| |||
|
|
On 18 Oct, 16:29, "Ian Michael Gumby" <im_gu... (AT) hotmail (DOT) com> wrote: BTW, when will Oracle get their act together and do temp tables right? Anyone who's had to suffer through their bastardized "global" temp tables can appreciate that a *real* database allows users to create temp tables on the fly as part of their adhoc queries. __________________________________________________ _______________ How do Oracle temp tables work? What is the problem with them? |
#29
| |||
| |||
|
|
david (AT) smooth1 (DOT) co.uk wrote: On 18 Oct, 16:29, "Ian Michael Gumby" <im_gu... (AT) hotmail (DOT) com> wrote: BTW, when will Oracle get their act together and do temp tables right? Anyone who's had to suffer through their bastardized "global" temp tables can appreciate that a *real* database allows users to create temp tables on the fly as part of their adhoc queries. __________________________________________________ _______________ How do Oracle temp tables work? What is the problem with them? In Oracle the tables are not temporary ... no need for them to be due to the difference in locking and transaction architecture. Rather it is the data within them that is transitory. There are two types of temp tables in Oracle ... the first for example: CREATE GLOBAL TEMPORARY TABLE gtt_zip2 ( zip_code VARCHAR2(5), by_user VARCHAR2(30), entry_date DATE) ON COMMIT DELETE ROWS; does precisely what the syntax indicates. The second has a different behavior: CREATE GLOBAL TEMPORARY TABLE gtt_zip3 ( zip_code VARCHAR2(5), by_user VARCHAR2(30), entry_date DATE) ON COMMIT PRESERVE ROWS; and empties itself at the end of a session. The advantages of Oracle's version of temp tables relates specifically to Oracle's use of undo segments and multiversion read consistency and would make no sense in Informix thus I can understand the attitude. In Oracle building Informix-type temp tables would be similarly bad design. Huh? DB2 for zOS has the same kind of temp tables (they are in the SQL |
|
The OP's statement most likely stems from not understanding the differences between the two products. I don't think so.... |
#30
| ||||
| ||||
|
|
DA Morgan wrote: david (AT) smooth1 (DOT) co.uk wrote: On 18 Oct, 16:29, "Ian Michael Gumby" <im_gu... (AT) hotmail (DOT) com> wrote: BTW, when will Oracle get their act together and do temp tables right? Anyone who's had to suffer through their bastardized "global" temp tables can appreciate that a *real* database allows users to create temp tables on the fly as part of their adhoc queries. __________________________________________________ _______________ How do Oracle temp tables work? What is the problem with them? In Oracle the tables are not temporary ... no need for them to be due to the difference in locking and transaction architecture. Rather it is the data within them that is transitory. There are two types of temp tables in Oracle ... the first for example: CREATE GLOBAL TEMPORARY TABLE gtt_zip2 ( zip_code VARCHAR2(5), by_user VARCHAR2(30), entry_date DATE) ON COMMIT DELETE ROWS; does precisely what the syntax indicates. The second has a different behavior: CREATE GLOBAL TEMPORARY TABLE gtt_zip3 ( zip_code VARCHAR2(5), by_user VARCHAR2(30), entry_date DATE) ON COMMIT PRESERVE ROWS; and empties itself at the end of a session. The advantages of Oracle's version of temp tables relates specifically to Oracle's use of undo segments and multiversion read consistency and would make no sense in Informix thus I can understand the attitude. In Oracle building Informix-type temp tables would be similarly bad design. Huh? DB2 for zOS has the same kind of temp tables (they are in the SQL Standard actually). |
|
The OP's statement most likely stems from not understanding the differences between the two products. I don't think so.... Here is my take: The advantage of session-local temporary tables, that is tables who's definition is not persisted in the catalog has the advantage that ad-hoc tables can be created quickly without impacting the catalog and without a care whether some other session may have a table with the same name (but a different signature) |
|
CREATED temporary tables on the other hand provide the same certainty about the table's signature as persistent tables. |
|
So how does Oracle get around this downside? Cheers Serge |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |