SQL SELECT INTO Statement
The SQL SELECT INTO statement can be used to create backup copies of tables. The SQL SELECT INTO Statement The SELECT INTO statement selects data from one table, creates a new table with the exact...
View ArticleMS SQL Server / SELECT clause with a CASE expression
In SQL Server, if you have a column which has NULLs and instead of nulls, if you want to display ‘Nothing’, what would you do? The following query SELECT CASE Dept_Name WHEN NULL THEN 'Nothing' ELSE...
View ArticleUse CAST (or CONVERT) to handle Null Date values in Microsoft SQL Server
In an SQL Server View, a problem is that the DateTime field has many Null values which is causing a problem with the parsing of the data in MSAccess. How to I use CAST (or CONVERT) to handle Null Date...
View ArticleValid styles for converting datetime to string
I wrote this little table and procedure to help me remember what style 104 did, or how to get HH:MM AM/PM out of a DATETIME column. Basically, it populates a table with the valid style numbers, then...
View ArticleOracle Database 11g PL/SQL Programming
Product Description Design Feature-Rich PL/SQL ApplicationsDeliver dynamic, client/server PL/SQL applications with expert guidance from an Oracle programming professional. With full coverage of the...
View ArticleT-SQL: How do I find the greatest values in a column?
How can write a SELECT statement that finds the n greatest values in a column? From what i’ve read, the TOP statement only returns the first n rows, it doesn’t take any regard to the values. For...
View ArticlePL/SQL Best Practices with Steven Feuerstein
Renowned Oracle PL/SQL expert, Steven Feuerstein, presents “PL/SQL Best Practices” — offering high-level principles to guide our work. Related posts: Oracle PL/SQL Best Practices Quest Software –...
View ArticleHow do I set up a job on SQL 2000 to back up a database on other computers in...
I am trying to create a job on SQL 2000 that will allow me to backup databases from 3 other computers in my domain. all running SQL 2000. i need help writing the T-SQL Statement to insert in the job...
View ArticleHow do I get started in writing/programming in T-SQL?
I am completely confused on what T-SQL really is and how it is different from SQL and its variants. How do you guys program something using T-SQL language? I mean where do you actually ‘encode’ those...
View ArticleAutomating tests for T-SQL code
tst.codeplex.com This is a short demo of the TST tool. This is an open source tool that can be used to write and automate tests for T-SQL code. Similar to other tools like SPUnit but with a more mature...
View ArticlePro T-SQL 2005 Programmer’s Guide
Product Description Pro T-SQL 2005 Programmer’s Guide provides comprehensive and detailed coverage of all the major features and facilities of T-SQL for SQL Server 2005. It is designed for all users of...
View ArticleSQL SERVER Tutorial – T-SQL: TOP – CROSS JOIN – JOIN WITH WHERE – INNER JOIN...
T-SQL Tutorial Related posts: SQL SERVER / T-SQL Tutorial: Left Outer Join – Right Outer Join – Full Join – Combining Join SQL SERVER Tutorial – T-SQL: Self Join SQL SERVER Tutorial – T-SQL: Inserting...
View ArticleSQL SERVER / T-SQL Tutorial: Left Outer Join – Right Outer Join – Full Join –...
T-SQL Tutorial Related posts: SQL SERVER Tutorial – T-SQL: TOP – CROSS JOIN – JOIN WITH WHERE – INNER JOIN – MULTIPLE JOIN SQL SERVER Tutorial – T-SQL: Self Join SQL SERVER Tutorial – T-SQL: ORDER BY –...
View ArticleT-SQL 2008 Joes 2 Pros: Core T-SQL Coding Fundamentals For Microsoft SQL...
Product Description Joes 2 Pros turns SQL students into SQL certified experts. This is the original SQL book that began it all. A newer second edition of this book has been reprinted with a lower price...
View ArticleSQL Server 2005 Video Tutorial – 1 – Installing
idealprogrammer.com presents SQL Server 2005 Video Tutorial Series. In this first 10-minute video, you will learn how to install SQL Server 2005 Express and the SQL Server Management Studio. Related...
View ArticleMicrosoft SQL Server 2005 Stored Procedure Programming in T-SQL & . NET
Product Description Create and Use Stored Procedures for Optimal Database PerformanceDevelop complex stored procedures to retrieve, manipulate, update, and delete data. Microsoft SQL Server 2005 Stored...
View Article