Tom Kyte | The database comes alive!

 

Connecting state and local government leaders

Say what you will about Oracle Corp., when it comes to databases, the Redwood Shores, Calif., company knows how to stay ahead.

Say what you will about Oracle Corp., when it comes to databases, the Redwood Shores, Calif., company knows how to stay ahead.While competing products of decades past'think DB/2 and Sybase'retain only a sliver of their former market shares, Oracle continues to enjoy a hefty portion of the database pie. These days, the company faces a new type of competition. Not only is Microsoft Corp. making inroads with its competitively priced SQL Server, but a new crop of open-source databases, such as PostGreSQL and MySQL, increasingly are becoming attractive to enterprise users.Not surprisingly, Oracle has been relentlessly improving its own database to stay ahead of this wave of commodification. The newest version, Oracle10g, offers advanced features that would shock those used to thinking of databases as simple data cupboards.Tom Kyte, a vice president in Oracle's public sector division, is a good person to get us up to speed on these features. He has authored a number of books on the subject, including Expert One on One Oracle, Beginning Oracle Programming, and Effective Oracle by Design. He also writes a database advice column, called AskTom () for the Oracle customer magazine.Kyte received a bachelor's degree in mathematics from the University of Pittsburgh. GCN associate writer Joab Jackson spoke with Kyte by phone.Kyte: In the Oracle8i/9i timeframe, a service was simply a way for a database instance to register itself with our networking software so that an end user, instead of logging into a specific database instance to get their data, would log into a service. A service might have four database instances behind it in a cluster. The service was the layer of transparency. The end user didn't have to know which node in a cluster to log on to. They would log in to a service.In 10g, we have taken this to the next step. In the past, all of the resource management was done at the user level. As an individual, you would have a resource policy associated with you. So what we wanted to do is assign our resource policies to the application instead of to the individual. If I were running two applications [that used] the same database, say an order-entry and a human resources application, I could make sure my order-entry system had priority from 9 to 5.Kyte: ASM is a database file system. Normally, in a large database environment, where a storage area network is used, a system administrator would map all the physical devices in the SAN to logical units, LUNs. Then they'd give the file system to a database administrator, and that DBA could create databases there.The problem is databases grow. This year, I have 500 gigabytes; next year I'll need 200 gigabytes more. Typically, the system administrator would set up new devices, set up a new file system and give the DBA the new file system. The DBA would have to sit down and figure out how to move the files around, how to split the files up to achieve even input/output across all the mount points.With ASM, we cut out that creation of a file system. Instead, we give those logical units directly to the DBA. As soon as a DBA puts these devices into a disk group, the database will go through a rebalance to achieve even I/O distribution across all of the available devices. It will pick up some of the data on the old storage and move it over to the new storage. This is a background operation, without the DBA [directing the database to] move the bytes. This happens not only automatically, but it is happening online'it is not an offline operation. A DBA with a small system of six direct-attached disks could tell Oracle to mirror and stripe everything.Kyte: Exactly. When new storage is added to the system, the DBA doesn't have to figure out what to move. The database starts moving. The only thing the DBA has to set is the intensity, or power level, of the rebalance.Kyte: Before 10g came out, if you would have asked me what was the wildest thing I would put in a database, ASM far exceeds anything I could have predicted. Now that you see it in hindsight, it is a big 'No duh.' But no one had anticipated it before.Kyte: That is the resource allocation that I was talking about. Say we use a six-node cluster and initially four nodes would be dedicated to service one, and two of the nodes will be dedicated to service two. I could craft workload policies that say at night, when we have a lot of batch jobs to run, reallocate [one node from service one to service two]. Or, I could have Oracle10g watch this system over time, and come back with a recommendation [for how to best allocate the nodes].You can get to the point where if you have trust in the software you can have it reallocate these workloads for you. A lot of new features with 10g start with the database watching what it is doing and recommending how it should be set up. Or, if you allow it, it could make the changes without your intervention.Kyte: There are three levels of support for products. The highest level is error correction support'that means if you find a bug, we'd develop a patch to fix the bug.Then there is extended maintenance support. There, if you hit an existing known issue, you'd get the patch. If no patch exists, we'd attempt to develop a workaround.The last support level is called extended support, which is done by a contract-by-contract basis. A lot of federal customers take advantage of that, at the time they purchased the product. They'd say, 'We need to support this until this point in time.'Specifically, for Oracle9i Release 2, the end of error correction support is July 2007, and the end of normal support is July 2009. If you call in July 2009, support won't hang up the phone, they will try to help you solve the problem, [but the support will be based on] the existing repository of support notes, workarounds and experience.Kyte: We look at it as an old technology. We've been doing that since Version 5 of our database. When I first joined Oracle in 1993, the product used to be called cooperative server. Distributed databases were a big deal back then. The machines weren't big enough to hold all of the information in the database. So many people ran lots of small databases. We view consolidation as a more appropriate way to view some of these problems.Kyte: I built database applications, mostly for military customers. The first program I ever wrote ran in the basement of the Pentagon somewhere. I worked mostly on two systems, one for the National Guard, and one for the Army Reserve. These were modeling systems, where we would take all the historical information, and build large-scale simulations and project out the force needs for [the upcoming] years.Eventually, I started working on a project known as the Joint Computer-Aided Logistics [Acquisition and Logistics Support]. I was subcontractor to Computer Sciences Corp. and there we were building a very large-scale federated database. We were writing the software that glued together all of the disparate databases out there. That is when I discovered Oracle with its capabilities. I remember sitting down with the technical sales consultant'he is now my manager'and taking a look at what Oracle did as far as distributed databases. I remember thinking 'We don't have to implement a lot of this software because you guys already wrote it.' They didn't have everything but they had the core foundation we needed for a data integration engine.

Age: 40


Family: Wife and two children


Pets: Dog, cat, hamster, frog


Car currently driven: Toyota Prius


Last book read: Woody Allen : A Life in Film, by Richard Schickel


Favorite Web site: Google.com


Sports/leisure activities: Reading, outdoor work


Personal motto: 'Trust, but verify'

Tom Kyte, Oracle VP

Olivier Douliery







asktom.oracle.com



GCN: Oracle has recast the concept of a database 'session' as a 'service' in 10g. What is the difference between the two?





GCN: How does the Automatic Storage Manager feature in 10g help with reallocating storage?







GCN: So it could be used to migrate a database from an older SAN to a newer one.



GCN: That is pretty ingenious.



GCN: What does Oracle 10g's 'Automated Workload Manager' do?





GCN: When will Oracle discontinue its predecessor to Oracle10g, Oracle9i?









GCN: Rumor control has it that Microsoft may be adding federated query to its new version of the SQL Server (federated query is the ability to have one query be executed across multiple databases). Does Oracle offer something similar?



GCN: Before joining Oracle, what did you do?



NEXT STORY: Incoming

X
This website uses cookies to enhance user experience and to analyze performance and traffic on our website. We also share information about your use of our site with our social media, advertising and analytics partners. Learn More / Do Not Sell My Personal Information
Accept Cookies
X
Cookie Preferences Cookie List

Do Not Sell My Personal Information

When you visit our website, we store cookies on your browser to collect information. The information collected might relate to you, your preferences or your device, and is mostly used to make the site work as you expect it to and to provide a more personalized web experience. However, you can choose not to allow certain types of cookies, which may impact your experience of the site and the services we are able to offer. Click on the different category headings to find out more and change our default settings according to your preference. You cannot opt-out of our First Party Strictly Necessary Cookies as they are deployed in order to ensure the proper functioning of our website (such as prompting the cookie banner and remembering your settings, to log into your account, to redirect you when you log out, etc.). For more information about the First and Third Party Cookies used please follow this link.

Allow All Cookies

Manage Consent Preferences

Strictly Necessary Cookies - Always Active

We do not allow you to opt-out of our certain cookies, as they are necessary to ensure the proper functioning of our website (such as prompting our cookie banner and remembering your privacy choices) and/or to monitor site performance. These cookies are not used in a way that constitutes a “sale” of your data under the CCPA. You can set your browser to block or alert you about these cookies, but some parts of the site will not work as intended if you do so. You can usually find these settings in the Options or Preferences menu of your browser. Visit www.allaboutcookies.org to learn more.

Sale of Personal Data, Targeting & Social Media Cookies

Under the California Consumer Privacy Act, you have the right to opt-out of the sale of your personal information to third parties. These cookies collect information for analytics and to personalize your experience with targeted ads. You may exercise your right to opt out of the sale of personal information by using this toggle switch. If you opt out we will not be able to offer you personalised ads and will not hand over your personal information to any third parties. Additionally, you may contact our legal department for further clarification about your rights as a California consumer by using this Exercise My Rights link

If you have enabled privacy controls on your browser (such as a plugin), we have to take that as a valid request to opt-out. Therefore we would not be able to track your activity through the web. This may affect our ability to personalize ads according to your preferences.

Targeting cookies may be set through our site by our advertising partners. They may be used by those companies to build a profile of your interests and show you relevant adverts on other sites. They do not store directly personal information, but are based on uniquely identifying your browser and internet device. If you do not allow these cookies, you will experience less targeted advertising.

Social media cookies are set by a range of social media services that we have added to the site to enable you to share our content with your friends and networks. They are capable of tracking your browser across other sites and building up a profile of your interests. This may impact the content and messages you see on other websites you visit. If you do not allow these cookies you may not be able to use or see these sharing tools.

If you want to opt out of all of our lead reports and lists, please submit a privacy request at our Do Not Sell page.

Save Settings
Cookie Preferences Cookie List

Cookie List

A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:

Strictly Necessary Cookies

We do not allow you to opt-out of our certain cookies, as they are necessary to ensure the proper functioning of our website (such as prompting our cookie banner and remembering your privacy choices) and/or to monitor site performance. These cookies are not used in a way that constitutes a “sale” of your data under the CCPA. You can set your browser to block or alert you about these cookies, but some parts of the site will not work as intended if you do so. You can usually find these settings in the Options or Preferences menu of your browser. Visit www.allaboutcookies.org to learn more.

Functional Cookies

We do not allow you to opt-out of our certain cookies, as they are necessary to ensure the proper functioning of our website (such as prompting our cookie banner and remembering your privacy choices) and/or to monitor site performance. These cookies are not used in a way that constitutes a “sale” of your data under the CCPA. You can set your browser to block or alert you about these cookies, but some parts of the site will not work as intended if you do so. You can usually find these settings in the Options or Preferences menu of your browser. Visit www.allaboutcookies.org to learn more.

Performance Cookies

We do not allow you to opt-out of our certain cookies, as they are necessary to ensure the proper functioning of our website (such as prompting our cookie banner and remembering your privacy choices) and/or to monitor site performance. These cookies are not used in a way that constitutes a “sale” of your data under the CCPA. You can set your browser to block or alert you about these cookies, but some parts of the site will not work as intended if you do so. You can usually find these settings in the Options or Preferences menu of your browser. Visit www.allaboutcookies.org to learn more.

Sale of Personal Data

We also use cookies to personalize your experience on our websites, including by determining the most relevant content and advertisements to show you, and to monitor site traffic and performance, so that we may improve our websites and your experience. You may opt out of our use of such cookies (and the associated “sale” of your Personal Information) by using this toggle switch. You will still see some advertising, regardless of your selection. Because we do not track you across different devices, browsers and GEMG properties, your selection will take effect only on this browser, this device and this website.

Social Media Cookies

We also use cookies to personalize your experience on our websites, including by determining the most relevant content and advertisements to show you, and to monitor site traffic and performance, so that we may improve our websites and your experience. You may opt out of our use of such cookies (and the associated “sale” of your Personal Information) by using this toggle switch. You will still see some advertising, regardless of your selection. Because we do not track you across different devices, browsers and GEMG properties, your selection will take effect only on this browser, this device and this website.

Targeting Cookies

We also use cookies to personalize your experience on our websites, including by determining the most relevant content and advertisements to show you, and to monitor site traffic and performance, so that we may improve our websites and your experience. You may opt out of our use of such cookies (and the associated “sale” of your Personal Information) by using this toggle switch. You will still see some advertising, regardless of your selection. Because we do not track you across different devices, browsers and GEMG properties, your selection will take effect only on this browser, this device and this website.