SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : Gorilla and King Portfolio Candidates

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
To: Rickus123 who wrote (15036)1/13/2000 12:22:00 PM
From: emmeling  Read Replies (1) of 54805
 
As a database developer who's worked with Oracle (and other RDMS's), I believe I can shed some light on some of the technical issues you raise.

They mention how, early on, the market for RDBMS was given "a huge boost when Oracle standardized on IBM's SQL language" (RFM, p. 199) So there was really no proprietary architecture, after all.

When Oracle standardized on IBM's SQL language, that did not make their architecture non-proprietary -- it simply gave it an open interface. The architecture consists of Oracle's techniques for storing, retrieving, and maintaining data. SQL ("structured query language") is simply a protocol for accessing that database information.

An example of an SQL query would be:

SELECT MsgID, MsgDate, MsgText
FROM Messages
WHERE Author = "Rickus123"
AND SubjectID = 25851
ORDER BY MsgDate DESC

This would retrieve all the messages you've written on this thread in reverse date order. (DISCLAIMER: I have no actual knowledge of SiliconInvestor's data schema, but it probably looks a lot like this. Except that Author is probably stored as a number, not as "Rickus123", similar to SubjectID.)

Most modern RDMS's support SQL as a query language, though there are significant differences in dialect. Only the simplest of queries will work across database platforms. Still, this provides a good degree of "openness" (and attempts at standardization of the SQL language are underway).

Architecturally, however, there are differences in the way data is stored, ranges of values accepted, how referential integrity is enforced, etc. I can tell you that from a database programmer's point-of-view, it is no simple task to move an application from one database platform to another. Very high switching costs.

Hope this helps.

--Tracey
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext