Comments
Sort by recent activity
Ah, easily found in options (if you actually look in options). Interestingly, you cannot search for "NOT FOR REPLICATION" -- I think the "NOT" part is throwing off the search. / comments
Ah, easily found in options (if you actually look in options). Interestingly, you cannot search for "NOT FOR REPLICATION" -- I think the "NOT" part is throwing off the search.
Per Red-Gate support:
• Delete any file in C:Program Files (x86)Common FilesRed GateShared Client that look like ".rgupdate_bad_xxxx", and then try running the installer again
This worked for me. Apparently it can also be a firewall issue. / comments
Per Red-Gate support:
• Delete any file in C:Program Files (x86)Common FilesRed GateShared Client that look like ".rgupdate_bad_xxxx", and then try running the installer again
This worked for me....
This is the one I use: SELECT ROUTINE_NAME, ROUTINE_DEFINITION
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_DEFINITION LIKE '%$CURSOR$%'
AND ROUTINE_TYPE='PROCEDURE'
ORDER BY [ROUTINE_NAME]
/ comments
This is the one I use:SELECT ROUTINE_NAME, ROUTINE_DEFINITION
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_DEFINITION LIKE '%$CURSOR$%'
AND ROUTINE_TYPE='PROCEDURE'
ORDER BY [ROUTINE_NAME&#...
Any changes in price for V5? / comments
Any changes in price for V5?
This might work out for us. Especially since we plan on getting Sql Backup and possibly the Sql Log.
If we already have a copy+maint of a bundle, do we get to apply that towards this mega-bundle?
Suppose I just contact sales@red-gate.com, eh? / comments
This might work out for us. Especially since we plan on getting Sql Backup and possibly the Sql Log.
If we already have a copy+maint of a bundle, do we get to apply that towards this mega-bundle?
S...
Nick wrote:
The cost of the SQL Prompt Bundle, ... , will be $490 ($613 including 12 months priority support and upgrades) for a single user license.
So for $490 you don't get 12-months of updates (3.0->3.1)? Or are you just talking major updates (3.0->4.0)?
Nick wrote:
We are offering early order copies at the discounted price of $350 during the month of October.
Does that include 12-months of updates? / comments
Nick wrote:
The cost of the SQL Prompt Bundle, ... , will be $490 ($613 including 12 months priority support and upgrades) for a single user license.
So for $490 you don't get 12-months of upd...
I'm curious how that price came about considering SQL Bundle Standard is $490.
Sql Bundle Std is something I'd expect to cost $500. Sql Refactor/Prompt is not.
Would this include life-time updates? / comments
I'm curious how that price came about considering SQL Bundle Standard is $490.
Sql Bundle Std is something I'd expect to cost $500. Sql Refactor/Prompt is not.
Would this include life-time updates?
I'm glad to have had this beta. And although a second beta would be nice, I'm guessing the final version will be great. After all, the other red-gate products I use turned out great even w/o my input. :-)
Unless 3.0 is perfect with no bugs or missing features <chuckle><chuckle>, I hope the 3.x versions keep coming out on a regular basis. / comments
I'm glad to have had this beta. And although a second beta would be nice, I'm guessing the final version will be great. After all, the other red-gate products I use turned out great even w/o my inp...
I think several of your issues are being addressed in the final version.
I think I read that they are not going to have another beta version before release, which is too bad because i'm guessing the beta version we are running is nothing like the current version. / comments
I think several of your issues are being addressed in the final version.
I think I read that they are not going to have another beta version before release, which is too bad because i'm guessing th...
1. Open the original Sql.
2. Choose "Lay Out Sql"
3. Get lineIndex exception, click contine.
4. Comment out USE statement.
5. Choose "Lay Out Sql"
6. Get lineIndex exception, click contine.
7. Remove "--"
8. Choose "Lay Out Sql", No Error
9. Un-Comment USE statement
10. Choose "Lay Out Sql", No Error
11. Put "--" back.
12. Choose "Lay Out Sql", No Error
In the end I have the same Sql statements, except there is no error. The only text I add/remove is the comment lines before the USE statement and in the WHERE clause.
After running the first "Lay Out Sql" I get this: LINE 1: USE SiteSecurity_Secure
LINE 2:
LINE 3: SELECT dbo.OrganizationClasses.OrgClassCode, [+ rest of the file, Including entire WHERE clase]
After going through the above procedure I get this: LINE 1: USE SiteSecurity_Secure
LINE 2:
LINE 3: SELECT dbo.OrganizationClasses.OrgClassCode, [+ rest of file, up to the comment in the WHERE clause
LINE 4: -- AND ( b.CreateDate < @DATEB ) [+ remainder of file]
/ comments
1. Open the original Sql.
2. Choose "Lay Out Sql"
3. Get lineIndex exception, click contine.
4. Comment out USE statement.
5. Choose "Lay Out Sql"
6. Get lineIndex exception, click contine.
7. Remo...