Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

The Database Forum


You are currently viewing our The Database Forum as a guest. Please register to participate.
Login



Reply
Personal version of Oracle?
Old 09-05-2008, 12:45 AM Personal version of Oracle?
Skilled Talker

Posts: 53
Name: Dave
Location: Kansas, USA
Trades: 0
I have a dev server at home with IIS6 and MS SQL, but my new "day job" uses Oracle for their database. I've been having a heck of a time getting a lot of queries to work because of the differences between the two.

I'd like to set up Oracle at home, but I can't find anything on their site about if a "demo" or "personal" version is available. Is there such a monster?

Any recommendations on books or other references on an old MS SQL programmer moving over to Oracle?
dnavarrojr is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 09-05-2008, 05:33 AM Re: Personal version of Oracle?
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,519
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
http://www.oracle.com/technology/pro.../xe/index.html

DB size is limited to 4Gb other than that, it's the same base system.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 09-05-2008, 02:16 PM Re: Personal version of Oracle?
Learning Newbie's Avatar
Defies a Status

Latest Blog Post:
Astounding Republican Paranoia
Posts: 5,662
Name: John Alexander
Trades: 0
You can also download the full (enterprise) version of their flagship from Oracle.com and use a developer or educational license. What you described is perfect for that. You aren't allowed to use it to run a business, but they make it available so more people will become versed in their product. Getting Oracle Networking to work is a bear, tho.

I think the link Chris gave you is easier to get working.

(You should give him some TP for it. )
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
Learning Newbie is offline
Reply With Quote
View Public Profile
 
Old 09-11-2008, 01:50 PM Re: Personal version of Oracle?
Skilled Talker

Posts: 53
Name: Dave
Location: Kansas, USA
Trades: 0
Thanks, I got the express version up and running and it's good enough to run oracle style queries which is what I wanted. Now I just need to find some documentation on the differences between MS and Oracle queries.
dnavarrojr is offline
Reply With Quote
View Public Profile
 
Old 09-11-2008, 02:05 PM Re: Personal version of Oracle?
Learning Newbie's Avatar
Defies a Status

Latest Blog Post:
Astounding Republican Paranoia
Posts: 5,662
Name: John Alexander
Trades: 0
Somewhere in this thread is a link to a good one. Tripy is the resident expert in Oracle here, I think.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
Learning Newbie is offline
Reply With Quote
View Public Profile
 
Old 09-12-2008, 08:17 PM Re: Personal version of Oracle?
Junior Talker

Posts: 4
Name: Jeff
Trades: 0
Among some of the key (Sql) differences are:

1. The Case statement (MSSQL) is replaced by DECODE() function
2. GETDATE() in Oracle is SYSDATE.
3. Oracle has no "date-only" native data type; all DATE types are date and time.
4. You must use table aliases if you are using abstract data types in Oracle.

Those are just a few off the top of my head.
ImaCubFan is offline
Reply With Quote
View Public Profile
 
Old 09-12-2008, 08:42 PM Re: Personal version of Oracle?
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
Thanks John, but I'm far of an expert...

Some things else that comes to my mind are:
1) the CONNECT BY PRIOR does not have any equivalent in sql server (at least before 2008)
2) the non standard outer join syntax like this:
Code:
select x,y,z
from users u, attr a
where u.id=a.id(+)
is not supported in ms sql server. You have to specify the complete query
Code:
select x, y,z
from users u
left outer join attr a on u.id=a.id
3) The notion of package don't exists in sql server. You have stored procedures, scalar type functions and table type functions, but they are not grouped in packages like in Oracle

Otherwise, not much comes to my mind.
Maybe some functions or data types differences.
__________________
Only a biker knows why a dog sticks his head out the window.
tripy is offline
Reply With Quote
View Public Profile Visit tripy's homepage!
 
Old 09-16-2008, 04:48 PM Re: Personal version of Oracle?
Learning Newbie's Avatar
Defies a Status

Latest Blog Post:
Astounding Republican Paranoia
Posts: 5,662
Name: John Alexander
Trades: 0
You can use SQL 92 style joins in SQL Server, you just don't have (+) and such. This is perfectly valid

Select *
From sysObjects O, sysIndexes I
Where O.id = I.id

A really nice trick in Oracle is Join Using, where you don't have to spell out that the same column in both tables, only the column itself, is how the join should work.

Oracle has Create Or Alter syntax, where you have to pick one or the other in SQL Server.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
Learning Newbie is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Personal version of Oracle?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.61658 seconds with 12 queries