vote up 1 vote down star

Background:

I have an interview some time next week (for a Jr position) that requires SQL Server. The job descriptions states "Must be able to score high in a C# and a SQL Server design test."

I feel I'm solid on the C# portion, and I think I'm pretty good on implementation-agnostic DB design (Reread "Mastering Data Modeling" by Carlis & Maguire that was taught in college, and read through "Database Design For Mere Mortals" over the past week). I have a decent knowledge of basic SQL, but mostly from classes 2 years ago (I'm not using a RDBMS at current work), and in my outside project I'm using LINQ to SQL so not much of direct DB interaction, and it's more of the program driving the need for data, whereas for this position I get the sense that it's the other way around.

What are some good online resources or tutorials to get up to speed? This is a junior position so I'm not looking to be an expert in a few days or anything, but I at least need to know what I'm talking about. Ideally I'd like something similar to Dive Into Python which I highly enjoyed. Looking for something that can be digested in 2-3 days or so for kinda translating theory into practice, and also some brush up on syntax, and things to be aware of that are specific to SQL Server/T-SQL.

Also maybe some basic ADO.NET resources might be good too. The company I'm interviewing with hasn't upgraded to .NET 3.5 yet, so LINQ to SQL and Entity Framework aren't going to be available. Not really sure whether I'll need that much for the interview, but still good to know.

flag

6 Answers

vote up 2 vote down

I'm putting together notes for just that. I know there are much better resources, but this is what I'm doing to keep track of my notes, you might be interested in doing the same while you study. http://tinyurl.com/r2y5tw

link|flag
Thanks, haven't looked through all of it, but good stuff from what I've read. I'll +1 when I log in on my real account :p – Anonymous May 9 at 16:17
Thank you. I've been working on it nearly every day. I stopped midway through the SQL section to flush out the C# section since that is more important to me at the moment. – Ronnie May 9 at 16:20
Very nice and succinct explanation of Clustered vs Non-Clustered indexes. In general very short and to the point with very clear examples. You explain a lot of things very well in 3-5 lines that I see people try to explain in several paragraphs. I must say I'm very impressed. – Anonymous May 9 at 16:38
Thanks for a great resource Ronnie. Lots of succinct information there. Only one point I'd make - many businesses have their own naming conventions to follow, though yours is a good basis. – Lazlow May 16 at 7:12
vote up 1 vote down

SQL Server Books Online

link|flag
vote up 0 vote down

SQLTeam.com is a great resource for this everything T-SQL.

link|flag
vote up 0 vote down

In addition to Books Online:

Introduction to SQL Server (contains step by step walkthroughs)

Common Solutions for T-SQL Problems

Script Repository: SQL Server 2005

SO has some answers pointing at very useful resources:

link|flag
vote up 0 vote down

I've always like SQL Server Central. They have lots of good articles, and every day there's a Question of the Day that you can try to answer. QOTD is a great way to force yourself to learn about areas of SQL Server that you don't normally look at.

link|flag
vote up 0 vote down

Brent Ozar, a well known and highly respected SQL Server DBA in the community, has an entire area of his website dedicated to the subject of becoming a DBA.

http://www.brentozar.com/becoming-a-dba/

With regard to Database Design, I am sure you have already considered this however, I would recommend that you brush up on your knowledge and understanding of the process of Normalization. Transaction Isolation levels are another common subject area so look them up in SQL Server Books Online.

If you need any assistance with your studies or have any SQL Server queries you are always welcome to contact me.

http://www.johnsansom.com

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.