Pages
(Move to ...)
Home
Thank You
▼
Sunday, January 31, 2010
SQL Server - CHARINDEX - Oracle INSTR
›
There is a ‘ CharIndex’ function in SQL Server which is similar to the Oracle ‘ Instr’ function. In Oracle, the syntax of the INSTR functi...
1 comment:
SQL Server - Sample Database Link
›
Here is the link for Microsoft SQL Server Community Projects & Samples. They have provided the best examples and databases in the follow...
Friday, January 29, 2010
SQL Server - List Out Number of Rows in Database
›
To List-Out The Number Of Rows In Each Table From The Current Database. To Find-Out Number Of Rows In Each Table In Database. /**********...
SQL Server - Monthly Report - Group by Month
›
The following example guide you to retrieve a monthly report. As discussed earlier, If the date column is SMALLDATETIME or DATETIME, we can ...
SQL Server - Daily Report - Group by Date
›
Like hourly report, the following example guide you to retrieve a daily report. As discussed earlier, If the date column is SMALLDATETIME or...
SQL Server - Hourly Report - Group by Hour
›
Sometimes it requires to know how many inserts are happend every hour in a transactions table OR how many payments made every hour OR to ret...
Thursday, January 28, 2010
SQL Server - INSERT Statements
›
INSERT can be used in different ways. The following examples will guide you the method of row constructions using INSERT. CREATE TABLE Test...
SQL Server - Foreign Key Relationships
›
To establish a connection between two or more tables, foreign key constraint will be used. One table's primary key column can be referre...
SQL Server - GETDATE(), CURRENT_TIMESTAMP in DEFAULT statements
›
Most of the transactional tables generally do require to have a column with DEFAULT value as current date time to identify when the transact...
1 comment:
SQL Server - CASE Function- Examples
›
I heard many people asking about alternative for Oracle DECODE in SQL Server. There is no such function in SQL Server but through CASE funct...
‹
›
Home
View web version