Changes between Version 2 and Version 3 of MS SQL issues
- Timestamp:
- 11/01/11 12:07:47 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MS SQL issues
v2 v3 1 1 Putting some notes in here that relate to SQL Server specific isssues. 2 2 3 On linux boxes, accessing MS SQL is easiest using 'sqsh' a command-line Transact-SQL client. 3 On linux boxes, accessing MS SQL is easiest using 'sqsh' a command-line Transact-SQL client: 4 ''sqsh -S UHLSQLBRICCSDB\\UHLBRICCSDB -U username -P password'' 4 5 5 6 On the primary MS SQL server provided by the UHL, we have configured the following: 6 On the primary MS SQL server provided by the UHL (UHLSQLBRICCSDB\UHLBRICCSDB), we have configured the following for use by the i2b2 instance on uhlbriccsapp02: 7 7 8 8 {{{ … … 20 20 }}} 21 21 22 Links 22 And the following for use by the uhlbriccsapp03 i2b2: 23 24 {{{ 25 26 create database i2b2_app03_metadata 27 create database i2b2_app03_demodata 28 create database i2b2_app03_workdata 29 create database i2b2_app03_metadata2 30 create database i2b2_app03_demodata2 31 create database i2b2_app03_workdata2 32 create database i2b2_app03_b1_metadata 33 create database i2b2_app03_b1_data 34 create database i2b2_app03_b1_workdata 35 create database i2b2_app03_hive 36 create database i2b2_app03_pm 37 }}} 38 39 40 === Links=== 23 41 24 42 This is useful on rebuilding indexes: http://www.sqldbpros.com/2010/11/sql-server-rebuild-indexes-the-fastest-way/