Click here to Skip to main content
15,881,092 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
how to create local sql db qurey means in windows authentication
Posted
Comments
Amir Mahfoozi 2-Feb-12 7:21am    
Please express more.
ZurdoDev 2-Feb-12 8:04am    
No idea what you are asking. Provide more details.
Husain Ahmad Khalid 2-Feb-12 12:09pm    
Do you mean how to connect to SQL server using windows authentication?
Prasad Guduri 4-Feb-12 5:31am    
Statement to create database :

create database databsename;

Statement to use database :

use databasename;

Priyanka , Are you asking to connect SQL SERVER 2008 from ADO using windows authentication ?

then here is good article for you.

http://msdn.microsoft.com/en-us/library/ff647396.aspx[^]

Hope this helps , If yes then accept the answet and vote it other wise revert back with your queries
--Rahul D.
 
Share this answer
 
After Connecting to SQL server using Windows Authentication

follow bellow steps

Statement to create database :

create database databasename ;


Statement to Use created databse :

use databasename ;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900