Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help - Newby

Status
Not open for further replies.

OAKEJ

Programmer
Apr 13, 2005
39
US
I have to learn SQL Server quickly, and I'm very new to it - virtually starting from scratch but I'm pretty good with the SQL language. What tutiorials, literature or websites would you recommend that would be helpful. Thanks
 
One big thing to realize - SQL is not always SQL. The basics of SQL are the same from one product to another, but the intricacies can be different.

MS Access uses Jet SQL
Oracle uses PL/SQL, SQLPlus, and maybe other versions
MS SQL Server uses Transact-SQL (TSQL).

IIF is different in the languages. IIF in Access is comparable to CASE in SQL Server. There are other 'gotchas'. So be aware of this. Even SQL experts can be caught by the differences.

-SQLBill

The following is part of my signature block and is only intended to be informational.
Posting advice: FAQ481-4875
 
First thing is to understand database fundamentals. Here are a couple of links to help get you started


Also read the FAQs here, that will help you start to understand the complexity.

While learning you will run across two things that you should avoid at all costs: cursors (or loops) and Dynamic SQL. Cursors are horrible for performance. There is almost always a set-based solution that will work much faster. Dynamic SQl has performance and security issues. Read this link to understand why using it is not a great idea.

"NOTHING is more important in a database than integrity." ESquared
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top