MSSQL material:
A simple Query to display date and time in MSSQL database is :
select getdate()
...
Creation of new table from existing table in MSSQL:
The easiest way to create a table from an existing table or make a copy of table is often required while working with MSSQL db and method to create it is as follows:
select *
into test1copy --- new table
from test1 --- source table
Started working on this, hopefully i will post my learning here...........
Over all 17+ years IT Experience as Principal/Sr. Database Administrator / Golden gate Expert / ODI, OBIEE, WEBLOGIC admin / DevOps/SRE and Architect progressively responsible positions in diversified and very large production and development environments in various domains and vast experience in database administration, coding/programing, performance engineering and software cost optimization.
Showing posts with label MSSQL. Show all posts
Showing posts with label MSSQL. Show all posts
Wednesday, April 29, 2009
MSSQL material
MSSQL material:
A simple Query to display date and time in MSSQL database is :
...
Creation of new table from existing table in MSSQL:
The easiest way to create a table from an existing table or make a copy of table is often required while working with MSSQL db and method to create it is as follows:
select *
into test1copy --- new table
from test1 --- source table
Started working on this, hopefully i will post my learning here...........
A simple Query to display date and time in MSSQL database is :
select getdate()
...
Creation of new table from existing table in MSSQL:
The easiest way to create a table from an existing table or make a copy of table is often required while working with MSSQL db and method to create it is as follows:
select *
into test1copy --- new table
from test1 --- source table
Started working on this, hopefully i will post my learning here...........
Subscribe to:
Posts (Atom)