I am going on a job interview and have zero experience with MS SQL Server. However I have 1 year with Oracle. Is there such a huge difference between the two? What programming questions can I expect?
feedback
|
|
I'm an Oracle and SQL Server DBA who's now spends too much time on SQL Server. Not to be rude, but for someone who ONLY has 1 year of Oracle experience then I doubt you are totally ingrained into Oracle, but the most obvious differences are:
Obviously, if you wrap the TSQL DML in BEGIN TRANSACTION and COMMIT then it will roll back but this is rare in SQL Server code I've seen.
Also consider:
Final tip, always play to your strengths. Admit that you don't have much SQL Server experience but highlight that you know the principles of how an RDBMS works, how to development a data driven application and how you design in performance from the start, etc. | |||||||||||||||||||||
feedback
|
|
Oracle strengths:
SQL Server Strengths:
| |||||||||
feedback
|
|
Oracle and SQL Server have different extensions of SQL. Oracle has PL/SQL, while SQL Server has Transact-SQL (T-SQL). That means that while SQL (SELECT, INSERT, UPDATE, DELETE) is similar on a basic level, the syntax diverges quickly depending on what you are trying to do. When I work with T-SQL decision structure/control of flow, I believe it to be less accommodating than PL/SQL - CASE is an expression in T-SQL so it can't be used for control of flow while that's not the case in Oracle. Another irritation I have with T-SQL is that if you want to more than one operation within an IF branch - the entire branch must be contained in a BEGIN END block. Oracle doesn't care, but you have to define the END IF. Data types are similar, but Oracle doesn't descriminate between integer/decimal types - it's all NUMBER with the option to specify the degree of precision. Date functions in SQL Server are more accommodating. Both being popular products, it's easy to google for functionality equivalent in one for the other. Doesn't mean it will exist, but someone has probably posted the workaround. | |||
|
feedback
|
|
They probably know that you have Oracle experience and you do not have SQL Server experience (unless you lied in your resume). Just answer how you will resolve the problems in Oracle PL/SQL. Do not worry if your answer runs in SQL Server. There are differences but they do not matter in a job interview (except if the position is for a DBA). I know a lot of developers that knew Oracle that got jobs that required SQL Server skills and now they are really good in T-SQL. | ||||
|
feedback
|
|
Here is a comparison of concepts, terminology and syntax etc. and a comparison of performance / limitations Also, search SO with tags or keywords like [sql-server], [oracle], "difference" etc. as I'm guessing this topic has been readily addressed, although I didn't find, quickly, such references. | ||||
|
feedback
|
|
Honestly the biggest difference I've most often encountered is that Oracle is case-sensitive and MS SQL is case-insensitive by default. It leads to more gotchas and bugs than you'd think! | |||||||
feedback
|
|
I think just be honest. Dishonesty kills you in a job interview and (no offense), but if you only have 1 year Oracle experience and you didn't lie on your resume then you shouldn't have too much to worry about they won't be expecting you to have "all the answers". | ||||
|
feedback
|
|
If you can handle Oracle, you can easily handle SQL Server. Yes the syntax is different, but it is relatively easy to learn the differences. The database concepts of joins and grouping and aggregates, relational design, PK/FK etc are pretty much the same even when the syntax is slightly different. Just highlight your general database knowledge. If they ask specific syntax questions and you don't know the answer for SQl Server, tall how you would do it in Oracle and note that the syntax might be different in SQL server. One area I have seen where there is a difference is that Oracle performs better using cursors than SQL Server and some people coming from the Oracle world try to do things in cursors when they shouldn't in SQL Server. If you are used to doing row-by-row in Oracle, learn to think in the set-based fashion instead. You have execution plans and profiler available to help performance tune. Look these up, I'm sure Oracle has similar tools called something different. If you can show you are aware of some of the things you will have to adjust to coming from an ORacle environment, I think that gives you an edge in the interview over someone who hasn't us they aren't happy with the SQL server people whose resumes they got. From everything I've seen admin is less complex on SQL Server, so again if you can handle Oracle, SQL Server will be easy. | |||
|
feedback
|