Comments
Sort by recent activity
The offending code was part of a stored proc that worked fine for years and caused no errors up until I upgraded to the latest version of Source Control (7.7.0.18212). Suddenly, it was an issue. / comments
The offending code was part of a stored proc that worked fine for years and caused no errors up until I upgraded to the latest version of Source Control (7.7.0.18212). Suddenly, it was an issue.
Here is the code that was breaking, but it was the code up in Azdo throwing the error during "Pull from remote repository". CREATE PROC sp$temp$proc AS SET NOCOUNT ON; BEGIN
DECLARE @tTABLE (ShipmentId INT,
[Mode] VARCHAR(15),
ArriveTime DATETIME,
WaitTimeMinutes INT,
Which VARCHAR(20),
SLID INT,
Window INT,
[Interval] INT,
LegId INT) END
/ comments
Here is the code that was breaking, but it was the code up in Azdo throwing the error during "Pull from remote repository".CREATE PROC sp$temp$procASSET NOCOUNT ON;BEGIN
DECLARE @tTABLE (ShipmentId...
It turns out that the new version of Source Control has an issue with the word 'window'. Probably need to patch that. Enclosing it with brackets, as in [window] seems to work / comments
It turns out that the new version of Source Control has an issue with the word 'window'. Probably need to patch that. Enclosing it with brackets, as in [window] seems to work
Version 14.0.345. / comments
Version 14.0.345.
According to the link you sent, Window *could* be reserved in a future version. Maybe make the error that is generated a bit more descriptive so that people do not have to go line-by-line trying to find the offending string. / comments
According to the link you sent, Window *could* be reserved in a future version. Maybe make the error that is generated a bit more descriptive so that people do not have to go line-by-line trying to...
I have tried resolutions proposed in this thread, but to no avail. this is frustrating and ridiculous. https://forum.red-gate.com/discussion/88937/error-parsing-file-while-committing-stored-procedure-and-table / comments
I have tried resolutions proposed in this thread, but to no avail. this is frustrating and ridiculous. https://forum.red-gate.com/discussion/88937/error-parsing-file-while-committing-stored-procedu...
FYI, the version I am on is 7.7.0.18212 / comments
FYI, the version I am on is 7.7.0.18212
This was NOT an issue with source control. There were hanging processes on our Dev box that was causing CPU issues and apparently preventing Source Control from doing the compare. / comments
This was NOT an issue with source control. There were hanging processes on our Dev box that was causing CPU issues and apparently preventing Source Control from doing the compare.