Database
Roteiro para criar base de SQLServer (migração de legado)
RT.DB.FAQ-42994
- Instalar SQL Server 2014 Express
- Instalar SQL Server 2014 Management Studio
- Baixar o Backup utilizando o Management Studio
- Criar o banco
- Botão direito sobre o banco > Tasks > Restore > Database
- Seleciona Source: "Device"
- Clica em [...]
- Media: File
- [Add] e seleciona o arquivo de backup
- [OK]
- Para liberar acesso TCP/IP - Ver http://blog.citrix24.com/configure-sql-express-to-accept-remote-connections/
- Chama SQL Server Configuration Manager
- SQL Server Network Configuration > Protocols for SQLEXPRESS > TCP/IP > Enable
- SQL Server Network Configuration > Protocols for SQLEXPRESS > TCP/IP > Properties
- Limpar TCP Dynamic Ports: (limpar)
- Informar TCP Port: 1433
- Reiniciar o serviço (Pelo SQL Services)
- Pelo prompt de comando, verificar se a porta 1433 está sendo ouvida:
netstat -ano|find /i "1433"
- Para usar o JDBC
- Baixar o SQL Server JDBC
- Caso utilizar autenticação integrada, precisa copiar o arquivo sqljdbc_auth.dll que vem com o JDBC para a pasta Windows/System32
- URL de conexão, dev eser algo tipo:
CONFIG.DB.SQLSERVER.DRIVER=com.microsoft.sqlserver.jdbc.SQLServerDriver
CONFIG.DB.SQLSERVER.URL=jdbc:sqlserver://localhost;integratedSecurity=true;databaseName=ssemil