1. Change login mode:
a) open regedit
b) navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQLServer
c) change the value of LoginMode from 1 (windows authorization) to 2 (mixed mode)
2. Enable TCP/IP connectivity:
a) open the SQL Server Configuration Manager (this one comes with the SQL Server itself)
b) click on "SQL Server Network Configuration / Protocols for SQLEXPRESS
c) right-click on TCP/IP and select "Enable"
d) double-click on TCP/IP, go to second tab (IP Addresses"), scroll down to the bottom of the property list and in the "IP All" section fill in the blank "TCP Port" with 1433
3. Restart SQL Server:
a) select SQL Server Services
b) in the list to the right select SQL Server (SQLEXPRESS)
c) right-click it and select "Restart"
The next step requires any form of ability to execute SQL statements against the server. What I used was the Visual Web Developer 2010 and its "Database connections" view.
4. Enable "sa" user:
a)
ALTER LOGIN sa ENABLE
b)
ALTER LOGIN sa WITH PASSWORD = ''
5. Create a database:
a)
Create database your_database_name_here
6. Download and install the JDBC driver for Microsoft SQL Server (you just need the
sqljdbc4.jar
in your lib
folder)7. Configure your
DataSource.groovy
:driverClassName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"
dialect = "org.hibernate.dialect.SQLServerDialect"
url = "jdbc:sqlserver://localhost:1433;databaseName=your_database_name_here"
username = "sa"
password = "your_password_as_defined_in_4b"
With all that in place everything should work just fine :)
You might wonder why I've decided to mess around in windows registry instead of using proper tools (like the SQL Server Management Tools or whatever..). The answer is quite simple: It felt like a total overkill to install this humongous tool just to set one property :)
2 comments:
Having followed this from beginning to end I am sorry to say my application does not work. please follow my stackoverflow link below
http://stackoverflow.com/questions/14559296/error-when-attempting-grails-start-up-following-jdbc-setup/14559885#comment20314996_14559885
Any help would be appreciated
Gone through the explanation above with limited success any help would be appreciated. please see my stack overflow below.
http://stackoverflow.com/questions/14559296/error-when-attempting-grails-start-up-following-jdbc-setup/14559885#comment20314996_14559885
Post a Comment