Getting Started with Adobe After Effects - Part 6: Motion Blur

Liked



Upload Image Close it
Select File

This blog contains various articles on the SQL Server. Also this blog contains various interview questions on the SQL Server. Through this blog I try to make the learning of SQL Server/ BI and SQL DBA very easy and in a quick time.

Browse by Tags · View All
CodeProject 6
Sql Server 4
Having Clause 3
Interview Questions on sql server 3
SQLServerPediaSyndication 3
Happy New Year 1
Rebuild And Reorganization of Indexes 1
Replication in SQL Server 1
Fragmentation in SQL Server 1
Log Shipping in SQL Server 1

Archive · View All
February 2012 20
December 2012 5
April 2012 4
August 2012 2
November 2010 2
November 2012 1
June 2012 1
May 2011 1
November 2011 1
October 2011 1

Technology With Vivek Johari

  • 2
    Liked

    SQL Server Functions- An Introduction

    SQL FUNCTION: - Function in a database can be defined as the code segment consisting of a logical group of SQL statements which takes some input arguments (if required), run in a sequential order and returns the output either in the form of a single va...

    Vivek Johari  Posted on Jan 29 2012 4:52AM
    Profile · Blog
  • 2
    Liked
    2
    Comments

    SQL Triggers - An Introduction

    Introduction Triggers can be defined as the database objects which perform some action for automatic execution whenever users try to do execute data modification commands (INSERT, DELETE and UPDATE) on the specified tables. Triggers are bound to specifi...

    Vivek Johari  Posted on Jan 29 2012 4:51AM
    Profile · Blog
  • 1
    Liked

    SQL Server- Output clause

    Output Clause:- The SQL SERVER 2005 gives us an Output Clause which gives us the information about each row affected by the Insert, Update , Delete and Merge statement. It is more useful than @@scope_Identity and @@Identity column since these global varia...

    Vivek Johari  Posted on Jan 22 2012 5:52PM
    Profile · Blog
  • 1
    Liked

    CTE command In Sql Server

    Common table expression (CTE):- Common table expression or CTE can be described as the temporary, named record set return by the execution of the query (insert, delete, update, select or update view statement). It is not stored as an object in the databa...

    Vivek Johari  Posted on Jan 17 2012 6:45PM
    Profile · Blog
  • 1
    Liked

    SQL Server-Table Variable

    Table variable:- SQL Server provides an variable known as table variable which is used to store data in a similar way as we store data in physical tables but with some limitations. Like other SQL variable, it is also declare with the help of the Declare k...

    Vivek Johari  Posted on Jan 10 2012 10:45AM
    Profile · Blog
  • 1
    Liked

    SQL Server - Local temporary table

    Local temporary table:- Local temporary table is created in the tempdb and it is visible to the current user's session only. It remains exists till the current user session is connected. Once the user connection is disconnected it gets destroyed. Since t...

    Vivek Johari  Posted on Jan 8 2012 6:40PM
    Profile · Blog
  • 1
    Liked

    SQL Server - Global temporary tables

    Global temporary table:- Global temporary table is created in the tempdb and it is visible to all other sessions as well. Global temporary tables are only destroyed when the current user disconnected and all the sessions referring to it closed. It means...

    Vivek Johari  Posted on Jan 8 2012 6:39PM
    Profile · Blog
  • 1
    Liked

    How to change the database collation

    To change the collation of an database following commands can be used: ALTER DATABASE [database name] SET SINGLE_USER WITH ROLLBACK IMMEDIATE ALTER DATABASE [database name] COLLATE Newcollation ALTER DATABASE [database name] SET MULTI_USER ...

    Vivek Johari  Posted on Jan 3 2012 5:43PM
    Profile · Blog
  • 1
    Liked

    How to remane a Table in Sql Server

    To rename a column in a SQL Table following command can be reused: SP_RENAME 'old table name', 'New table name' For example, if we want to rename the table from employee to employeemaster, following command can be used. SP_RENAME 'employee', 'employee...

    Vivek Johari  Posted on Jan 3 2012 5:43PM
    Profile · Blog
  • 2
    Liked

    DML, DDL, DCL, TCL in SQL Server

    Different Types of Sql Statements:- DMLDML is abbreviation of Data Manipulation Language. It is used to retrieve, store, modify, delete, insert and update data in database. Examples: SELECT, UPDATE, INSERT statements Select :- This Sql Statement is used t...

    Vivek Johari  Posted on May 28 2011 5:54PM
    Profile · Blog
Previous 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | ... Next
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]