- Enable tcp/ip port (I use port 1433) in "SQL Server Configuration Manager" -> "SQL Server Network Configuration" -> Protocols for SQLEXPRESS => TCP/IP : {enabled, Right-Click/Properties: TCP Port: 1433}.
Test with: "telnet localhost 1433" or change localhost to server's ip address
- Create database for apollo
create database apollo on
(name = apollo_dat, FILENAME = 'E:\work\apollo.mdf', size = 200MB, FILEGROW
TH=5)
LOG ON (name='apollo_log', FILENAME = 'E:\work\apollo_log.ldf', size=200MB, FILEGROWTH=5)
GO
- Supply the params to APOLLO installer.
- If you get
javax.transaction.xa.XAException, refer to my previous post:
http://lydonchandra.blogspot.com/2010/06/javaxtransactionxaxaexception.html@@
No comments:
Post a Comment