-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a nasty bug with SQL Server where it tries to hold a connection…
… (interferes with drop/create mode) and gives a transport error. Custom Scripts also run token replacement. Two new switches available, CommandTimeout and CommandTimeoutAdmin. Migrate doesn't try to configure log4net now (causes issues w/libraries that do). Two new folders available: Indexes and AlterDatabase. Fix for Included sample for Oracle doesn't work. See [issue 55] (http://code.google.com/p/roundhouse/issues/detail?id=55) for details.
- Loading branch information
1 parent
3e5898f
commit a1d064a
Showing
51 changed files
with
486 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ _ReSharper* | |
*.cache | ||
*~ | ||
*.swp | ||
*.bak | ||
*.orig | ||
*.log | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ IS | |
BEGIN | ||
SELECT SYSDATE INTO v_Today FROM dual; | ||
RETURN v_Today; | ||
END; | ||
END | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ CREATE OR REPLACE PROCEDURE usp_GetDate | |
AS | ||
BEGIN | ||
SELECT ufn_GetDate('0') INTO v_date FROM dual; | ||
END; | ||
END | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ CREATE OR REPLACE PROCEDURE usp_SelectTimmy | |
AS | ||
BEGIN | ||
SELECT ID INTO v_ID FROM vw_Dude; | ||
END; | ||
END | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
|
||
CREATE TABLE Timmy | ||
( | ||
ID Number(19,0) NOT NULL | ||
,dude varchar(50) NULL | ||
); | ||
|
||
ALTER TABLE Timmy ADD (PRIMARY KEY(id)); | ||
) | ||
; | ||
ALTER TABLE Timmy ADD (PRIMARY KEY(id)) | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
ALTER TABLE Timmy DROP COLUMN dude; | ||
ALTER TABLE Timmy DROP COLUMN dude | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
CREATE OR REPLACE VIEW vw_Dude AS | ||
SELECT ID FROM Timmy; | ||
SELECT ID FROM Timmy | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.