Showing posts with label Sql. Show all posts
Showing posts with label Sql. Show all posts

Thursday, November 1, 2012

How to import data from Excel to SQL Server

How to import data from Excel to SQL Server IntroductionIn this article you will see how to use the SQL Server import an MS Excel file on your computer to a database on your SQL Server.Open The Sql Query window select the database and Typecreate database sampgosp_configure 'show advanced options',1  reconfigure with override  go  sp_configure...

Saturday, October 20, 2012

SQL

SQL Commands:SQL commands are instructions used to communicate with the database to perform specific task that work with data. SQL commands can be used not only for searching the database but also to perform various other functions like, for example, you can create tables, add data to tables, or modify data, drop the table, set permissions for users. SQL commands are grouped into four major categories depending on their functionality: Data Definition Language (DDL)...