AltME groups: search
Help · search scripts · search articles · search mailing listresults summary
world | hits |
r4wp | 7 |
r3wp | 57 |
total: | 64 |
results window for this page: [start: 1 end: 64]
world-name: r4wp
Group: #Red ... Red language group [web-public] | ||
Kaj: 30-Sep-2012 | It was always a GPL SQL database, but people complained it didn't support as much as, say, Oracle and PostgreSQL | |
DocKimbel: 14-May-2013 | I also needed to add the Java folders to PATH manually, I don't know what Oracle is doing with its installers... | |
Group: Ann-Reply ... Reply to Announce group [web-public] | ||
BrianH: 26-Sep-2012 | If you don't look at the source, but just examine the behavior from the outside, that is called clean-room reverse engineering. You can't be blocked on copyright violation grounds, just patent and trademark stuff. Even the function specs could be considered to be not copyrightable, according to Google vs. Oracle, though that case's appeals haven't made it to the supreme court yet. The doc strings are another issue though since they aren't technically necessary for interoperability. Copyright laws (at least in the US) don't make a distinction between code and data when it comes to derived works. | |
Maxim: 26-Sep-2012 | GPL's licensing is much more murky when it relates to languages and interpreters. in court it could be a much bloodier battle than it was for Google vs Oracle. | |
Scot: 15-Feb-2013 | The only place I've seen othermindedness happen has been inside companies with strong leaders. The results are always powerful. The Humana Healthcare organization went from 4 rural hospitals to the second largest HMO in America that way. Waste Management also became the largest waste disposal company in America that way. There is one part of Oracle that is experiencing a 4 fold increase in sales as a result of an othermined culture establish by the general manager of that department. NewTek was another company that started out that way. It can be done, but I've never seen it in an open source community. | |
Group: Databases ... group to discuss various database issues and drivers [web-public] | ||
Endo: 15-Mar-2012 | almost :) Oracle doesn't support it, I think. http://www.petefreitag.com/item/666.cfm | |
Endo: 16-Mar-2012 | Or better put it only for unsupported db server like Oracle. |
world-name: r3wp
Group: All ... except covered in other channels [web-public] | ||
Tomc: 11-Mar-2006 | ack oracle bought sleepycat (maintainers if berkeley ) last month | |
Robert: 7-Feb-2010 | They use one fat Oracle server, that has some bugs and is not patched correctly so that everyone can grab some data, burn it and sell it. | |
Group: Ann-Reply ... Reply to Announce group [web-public] | ||
BrianH: 9-Mar-2010 | And also the Sun and Oracle tools, since the component model of Java was designed by Borland. And Eclipse, since it emulated the MS tools. | |
Group: RAMBO ... The REBOL bug and enhancement database [web-public] | ||
Pekr: 5-Jun-2006 | re #4116 - the same bug happens even via ODBC Oracle driver. So maybe Oracle driver is just a wrapper to ODBC? My suspicion is, that result of such query is non-standard, it is returned to the pipe, and rebol crashes by trying to parse it. Just a wild speculation though ... | |
Group: Core ... Discuss core issues [web-public] | ||
TimW: 17-May-2007 | Is there a way to change the format of to-date? In oracle you can specify to-date(field, 'MM-DD-YYYY') and I need to read in a lot of dates that are in MM/DD/YYYY, but to-date assumes it's DD/MM/YYYY. I also have dates that are Month DD, YYYY. | |
Group: View ... discuss view related issues [web-public] | ||
ICarii: 7-Nov-2005 | rebol/view is my refuge from the evils of Oracle and SQL Server development :) | |
Graham: 7-Nov-2005 | what's the freebie oracle like? | |
Maxim: 21-Feb-2007 | I've juste noticed the nice values we get for event key when pressing function keys !!! in order: console listen tcp udp icmp dns local odbc oracle | |
Group: MySQL ... [web-public] | ||
[unknown: 5]: 23-Dec-2008 | I have installed mySQL and Oracle as part of my studies for improving TretbaseDB. I'm curious from others that use mySQL with REBOL as to what they dislike about the interoperablility or what they like most about it. | |
Davide: 2-Mar-2009 | > My guess is also that Oracl, SQL Server and perhaps PostGreSQL are smarter with their table optimziers and query rewriters Postgres is about 2 times faster than MySQL in this query, but the execution time grow alot as num of records increase. So I really don't know how good is compared to MySQL. Oracle, I would try, but I have no time :-P > Also, change the count(*) to count(1) Thanks, good one. The real tables will be more large (5 M record or more), so small optimizations would be not sufficient I'm tryng a different approach, using one simple stored function: create function running_total (cod VARCHAR(50), adder DECIMAL) RETURNS DECIMAL BEGIN IF @last_cod <> cod THEN BEGIN SET @running_total = 0; SET @last_cod = cod; SET @num_row = 0; END; END IF; SET @running_total = @running_total + adder; SET @num_row = @num_row + 1; RETURN @running_total; END and using as select: SET @last_cod = ''; SET @running_total = 0; SET @num_row = 0; SELECT cod , date, running_total(cod , amount), @num_row FROM a ORDER BY cod, date; This approach seems really fast : processing and inserting 100'000 records took less than 1 sec. instead of 281,73 sec. with SQL join | |
Group: Syllable ... The free desktop and server operating system family [web-public] | ||
Graham: 26-Aug-2010 | To run syllable server, I personally need 1. ghostscript 2. hylaFAX 3. oracle or mysql 4. jira 5. pmwiki 6. apache 7. cheyenne | |
ddharing: 28-Aug-2010 | Kaj, I see that you've included Oracle's BerkeleyDB, but not the less corporate sqlite. Was there a specific reason for that choice? | |
Kaj: 28-Aug-2010 | Yes, BerkeleyDB was one of the oldest and most popular open source databases before Oracle acquired it. Many open source packages require it. We would rather have kept it out of the base system, but one such package is in the Syllable Server base system; I believe IPRoute | |
Group: Linux ... [web-public] group for linux REBOL users | ||
Maarten: 12-Sep-2005 | All SDKs have shell, library and encryption. Command adds ODBC/Oracle and SSL (client side) | |
Graham: 21-Feb-2008 | Using Vid, I get for F1 onwards, console, listen, tcp, udp, icmp, dns, odbc, oracle, msql, crypt, compress ... | |
Group: Web ... Everything web development related [web-public] | ||
Graham: 11-May-2010 | Looks like it might be using Oracle as the DB ... | |
Group: Announce ... Announcements only - use Ann-reply to chat [web-public] | ||
Coccinelle: 5-Mar-2006 | New version of SQL-PROTOCOL is on www.rebol.org This new version handle now standard SQL string for SELECT, INSERT, UPDATE and DELETE so you have a better compatibility with other database like MySQL, Oracle or ODCB protocol. | |
Group: SDK ... [web-public] | ||
BrianH: 1-Aug-2006 | Command adds encryption, ODBC, Oracle, (slower native) MySQL, and SSL. | |
Group: !RebGUI ... A lightweight alternative to VID [web-public] | ||
Ashley: 7-Dec-2005 | The idea with the on-* naming is to clearly indicate an event. I toyed with using just focus / unfocus but these verbs could be confused with the functions of the same name. Likewise, 'enter could be confused with the 'return keyword and 'exit has the same issue with regards to both 'exit and 'quit. 'on-enter and 'on-exit are possibilities though. on-focus and on-unfocus return true or false so as you can handle failure. This scenario is more likely with on-unfocus where you would want to trap and handle a field validation failure for example. The difference between on-unfocus and the usual action (both may be triggered by pressing enter for instance) is that on-unfocus enables you to interrupt the normal work-flow by aborting the unfocus and subsequent focus operation - something you could not [easily] do normally. Also, for many widgets the usual action and on-* actions may be different (e.g. pressing enter to initiate the default action may be quite different to pressing tab and leaving the field). For those familiar with Oracle*Forms, and similar products, these new actions are like the pre-field and post-field triggers (with the app-level ones mapping to pre-form and post-form). Good questions all, keep them coming. | |
Ashley: 14-Apr-2007 | Odd, just noticed that the latest View beta is registering fkeys as 'console, 'icmp, 'oracle, etc. Wierd. I vagually recollect someone else mentioning this before in another group though. | |
Graham: 14-Apr-2007 | oracle ?? | |
Graham: 21-Feb-2008 | This seems to work in lInux. In display.r, change find [f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12] event/key to find [ console listen tcp udp icmp dns local odbc oracle mysql crypt compress ] event/key and redefine on-fkey in rebgui-ctx.r on-fkey: make object! [ console: listen: tcp: udp: icmp: dns: local: odbc: oracle: mysql: crypt: compress: none ] | |
Group: Tech News ... Interesting technology [web-public] | ||
yeksoon: 15-Feb-2006 | Oracle acquires Sleepycat http://sleepycat.com/ | |
Pekr: 16-Feb-2006 | After buying Sleepycat, Oracle tried to buy mySQL - it starts to be worryig :-) | |
Pekr: 16-Feb-2006 | http://news.com.com/Oracle+tried+to+buy+open-source+MySQL/2100-7344_3-6040197.html?tag=nefd.lede | |
[unknown: 10]: 22-Mar-2006 | Oke SAP and Oracle is a different story... ;-) | |
[unknown: 9]: 16-May-2007 | Statistically, I find it close to impossible to believe that no open source infringes on MS, to begin with. Then there are patents from IBM, Oracle, etc. One has to either decide they are for patents or against them. Once you have worked that out (sort of religion), then you can make all your other statements. But MS is not the issue here. | |
yeksoon: 16-Jan-2008 | And Oracle acquires BEA http://www.bloomberg.com/apps/news?pid=20601087&sid=alI8qN7k9lQU&refer=home | |
Pekr: 20-Apr-2009 | Our general media portal reports, that SUN is being bought by Oracle. I thought that it was IBM who tried to acquire them? Anyone confirms the news? | |
Janko: 20-Apr-2009 | Hm.. I imagine they have hard time selling Oracle if MySQL is free.. I wouldn't like to be mysql right now :) | |
Janko: 20-Apr-2009 | I didn't know Oracle even exists in last years, and surelly not that they have so much $$ to buy Sun (+ MySQL )... I am not sure if they are very present in web-scene | |
BrianH: 20-Apr-2009 | Oracle already owns the company thaat makes the InnoDB engine for MySQL, and that didn't kill MySQL. | |
Robert: 20-Apr-2009 | Oracle moves away from a one-product company. Strategically a good step. And owning a lot of datastorage infrastructure within the companies makes them a logical choice for the other layers. | |
Robert: 20-Apr-2009 | But overall, I don't like this happening... when will Oracle DBs internally use ZFS? | |
Robert: 21-Apr-2009 | Nothing. I'm using it on OSX. My message referrs to two topics: 1. Oracle buys Sun -> I don't like it 2. Maybe ZFS will now become more a DB thing than a FS thing. | |
Graham: 13-Aug-2010 | I wonder if this would have happened if Google had used oracle as their primary database engine | |
Graham: 14-Aug-2010 | Looks like the ability to sue Google was one of the things Sun was selling to Oracle http://nighthacks.com/roller/jag/entry/the_shit_finally_hits_the | |
GrahamC: 9-Oct-2010 | Oracle probably sued Sun before they bought them .... | |
Group: !RebDB ... REBOL Pseudo-Relational Database [web-public] | ||
Ashley: 8-Feb-2006 | It's called a "Pseudo-Relational Database" for a good reason. ;) But in answer to Pekr's previous point; *you* can work out *how* to do that aggregation more efficiently than the limited AI of most RDBMS systems. I've worked at DB2 and Oracle shops where it was mandated that all JOINs be performed inline! SQL optimizers are not trivial to write, and the meta-data overhead (indexes, statistics, hints, etc) required to get them to make the "right" choices are often a false economy. | |
Group: !REBOL3-OLD1 ... [web-public] | ||
Pekr: 31-Jul-2007 | hehe, just reading Alianz success story. Those bank guys don't fear risking choosing non-traditional aproach. They chose AcuCobol with its own file system as a storage instead of relational database. Those IT ppl must be crazy, to run such a big house ... well, without SAP and Oracle :-) | |
Claude: 8-Dec-2008 | i wonder if some great guys who help carl thought about Database access ? odbc? rebol native lib for mysql db2 oracle mssql etc.... | |
BrianH: 4-Feb-2009 | Talk to professional Java or Oracle developers and then see if you can claim programmers are curious :( | |
Group: !Cheyenne ... Discussions about the Cheyenne Web Server [web-public] | ||
Gregg: 30-May-2008 | I like "theorical", it sounds like "the oracle". :-) | |
onetom: 24-Apr-2011 | what does Database C drivers: MySQL 3,Oracle 8 ... mean, btw? it doesnt work with mysql 5 and ora 10? | |
Dockimbel: 24-Apr-2011 | Those drivers are built in REBOL/Command. It depends if Mysql 5 and Oracle 10 servers are compatible with older drivers. I can only answer for Mysql, and the answer is no. | |
Dockimbel: 24-Apr-2011 | Not everybody run on Mysql 5 and Oracle 10, so it can be useful to some users. Also it's all or nothing, I cannot chose which native feature I want to include or not. | |
Dockimbel: 23-Nov-2011 | When any process wants to write, it must lock the entire database file for the duration of its update However, client/server database engines (such as PostgreSQL, MySQL, or Oracle) usually support a higher level of concurrency and allow multiple processes to be writing to the same database at the same time. This is possible in a client/server database because there is always a single well-controlled server process available to coordinate access. If your application has a need for a lot of concurrency, then you should consider using a client/server database. | |
Group: !REBOL2 Releases ... Discuss 2.x releases [web-public] | ||
BrianH: 28-Dec-2009 | And Oracle (does anyone use that?) | |
Graham: 28-Dec-2009 | BrianH .. a public license means that everyone gets ssl, odbc, oracle, encryption today without waiting for a new build. | |
Paul: 28-Dec-2009 | Brian, yes we use Oracle and Sybase specifically in our enterprise. | |
Graham: 14-Apr-2010 | OpenSolaris seems to be suppported by Oracle and a large community | |
BrianH: 14-Apr-2010 | It's a little soon to see if it will be supported by Oracle, but it's a cool platform. | |
Graham: 14-Apr-2010 | since Oracle also owns VirtualBox | |
TomBon: 15-Apr-2010 | like this? the cli connector is using the cli component nearly all major databases delivering. the connection is made via rebols call/wait/info/output/error and a simple parse after, for the resultset. I am using this prototype mainly for a q & d connect to mysql/postgresql/monetdb/sqlite. on my list are also connectors for firebird/oracle/greenplum/sybase/ingres/infobright/frontbase and cassandra. pros: 1. very fast for single requests 2. no rewrite of code needed if a new version or protocol is out 3. easy 'data migration' between the db's 4. adding new db's are a matter of hours only (see the cli spec thats all) 5. fast prototyping and testing for new db's 6. robust, never had any trouble with cli's even with bigger resultsets 7. should be perfect also for traditional cgi (the process starting overhead is minimal, execpt you name is facebook) 8. very small footprint (~120 lines for connecting to 4 db's, could be the half) with a nice tcp-server component like rebservice the cli multi connector could be very usefull as a c/s connector. I made a test with 2.000 concurrent calls (simple select) on a 4 gig quadcore. the cpu was only close to 50%, a good value. cons: 1. slow if you have very much serial inserts (unless you shape them into one sql query) 2. need to start a cli process for every request 3. needs a tcp server for non-local connections 4. some more, but who cares ;-) with a solution to keep the cli open from rebservice, these cons could disappear and the speed diff overhead to a memory based lib could be marginal. | |
Group: !REBOL3 ... [web-public] | ||
shadwolf: 26-May-2010 | maybe i wasn't clear. Sorry i readed my post and some things appears not to be clear anough... 1) Rebol runtime environement already exists that's the VM you install on your computer when you want to run scripts But a) it's not called a runtime environement b) it's need disappears when you use REBO/SDK to "hide" your industrial secrets or when you don't want on purpose the client to install or know that it's rebol behind. 2) by speudo compiling (byte code compilation) you allow people that need it to be a step closer to the hardware but keeping the portability effect so a rebol VM in my opinion should be able to run both a speudo binary file or a text script rebol file. Of course like in java people would feel the need to share their software with embeded Rebol Runtime Environement. 3) Having a runtime environement is the best modular way ... core will be the base then you have View and lot of othe modules that wil clip to rebol. for example if i put import "oracle" at the begining of my script then rebol runtime environement knows that he need the oracle package and goes to rebol.com to retrieve it and install it to the proper rebol runtime place in order for the vm to find it. Something close to what apt-get is to debian. REbol Environement doesn't comes with the whole thing but if the script tells it he can expend it selves in the fastest way. Well this runtime organisaton in fact already exists but it's not pushed to it's extend, you know the point where the good idea become the best idea. the rebol/view 2 implies a /desktop which implies a local scrit library (like a cache) to store the rebol script see the idea is there but once again it's not pushed to it's limits. Only rebgui used this system to store an extension to rebol. 4) by being closer to what people extend as an output you make them interessted in your input . To be more explicite by giving to peope what they are used to get in the end of their creation process then you allow them to be confident in your solution and to be more interressted on the way you propose to build your software. 5) i took java and .net as main example but if you look closely this is an expending tendency. For example Adobe Flash do that. 6) the other interrest in the compiled way is to merge the source code and the related resourcies at the same place (1.exe file for example) and then forbiding the people to change their contents ... and this leaded then to the skining my application modo. Wich is just the we don't merge in the resulting binary the resourcies . In rebol we can already easyly build a script merger with data to output a .r file containing both but then people can still extract the ressourcies and change them etc... | |
Sunanda: 28-Dec-2010 | The primary reason for supporting NaNs would be for easy of interaction with systems that do support NaN, eg Oracle. Right now, any REBOL system that was trying to trade values with an Oracle system that supported NaN and +/-INF would need to code for special cases. However, I do not know of anyone who has such a need -- so time for some to make the busines case! | |
Group: Power Mezz ... Discussions of the Power Mezz [web-public] | ||
Maxim: 20-Dec-2010 | some servers are anti-indexing and its in these cases where the brute parse is most effective. I've even had to cater an oracle web server which didn't have ANY css, type, or id fields in all pages which are driven by form. all urls can only be read once, and every page read is a redirect. only parse allowed me to cope in such a drastic anti-robot environment. it still took a day to build the robot. and in the end, it even had an auto-user-creationg step at each 200 pages which created a google gmail account for the next batch. :-) in those cases, parse is king. |