Unable to drop connection to the Database
Hello, I have rep server like belowA-->RP01-->RP02-->BA-->primary aseRP01-->primary rep serverRP02-->Replicate rep serverB-->Replicate ASE server Now i have shutdown B and forgot...
View ArticleRe: Unable to drop connection to the Database
Hi, How did you try to drop the connection?If you want to remove B server and its databases,try to use sysadmin dropdb command in ID server.Normally primary RS will be ID server. sysadmin dropdb, B,...
View ArticleRe: Unable to drop connection to the Database
For more detail of sysadmin dropdb,please refer to click sysadmin dropdb.
View ArticleRe: Encountered invalid logical page '0' while accessing database (TEXT...
Bret, FYI in the below samples the source table name has changed (a new one is created for each test run) but it is populated with the same data in each run. 1 " You should probably change S_TEXT...
View ArticleRe: Why is exception not thrown in AseCommand when "Truncation error occurred"?
"Truncation error occurredCommand has been aborted"
View ArticleRe: Why is exception not thrown in AseCommand when "Truncation error occurred"?
Hi Mike,Now that I know that some conditions are reported through the InfoMessage event I'm making progress. In my view "Truncation error occurred" is an error if it is followed by "Command has been...
View ArticleRe: Why is exception not thrown in AseCommand when "Truncation error occurred"?
Glad I could help. I agree that anything that does a Command has been aborted should be severity > 10. BTW, I should mention the Info handler is called at the end of the proc with all the messages...
View ArticleRe: Why is exception not thrown in AseCommand when "Truncation error occurred"?
Hi Dave, I am consulting internally on this. To my understanding, this behavior is based on the ASE severity level, as returned in the TDS_EED token. AseExceptions are thrown when severity level is 11...
View ArticleRe: Why is exception not thrown in AseCommand when "Truncation error occurred"?
Hi Mike, I tend to agree when ASE sends the abort message it should maybe be at least 11. It might be there is a CR to log on ASE. I don't know if this approach has been done before - the message has...
View ArticleRe: Why is exception not thrown in AseCommand when "Truncation error occurred"?
> I don't know if Info handler can be enhanced to allow access to result as they are receivedIf it helps, we modified the Mono drivers to print the messages coming back from the server as they're...
View ArticleRe: Why is exception not thrown in AseCommand when "Truncation error occurred"?
Hi Mike,Do you have a sample of this sort of scenario? I'd like to try it out and then see if we can maybe log feature to allow the InfoMessageHandler release received results as they arrive. Also,...
View ArticleRe: Encountered invalid logical page '0' while accessing database (TEXT...
Hi Dave, It is odd that your sp_help doesn't include an in_row_length value in the columns output.Perhaps you have an older version of sp_help installed?Please compare the sp_version output for...
View ArticleRe: Encountered invalid logical page '0' while accessing database (TEXT...
Hi Dave, Could you try the following?On MS SQL Server, create table t1 (c1 char(1) null, c2 text null, c3 char(1) null)goinsert t1 values ("1", null, "b")insert t1 values ("2", null, null)insert t1...
View ArticleRe: sybase Database Backup
Yes, backup server is up and running No errors found in the backup server errorlog but in dataserver errorlog and the same has been attached for you reference.
View ArticleRe: sybase Database Backup
The select on sysservers doesn't show enough information, you shoud add column srv_netname, so :select srvid, srvname, srvnetname from sysservers.or select srvnetname from sysservers where srvname =...
View ArticleRe: sybase Database Backup
Hi Luc, Please find the output.1> select srvnetname from sysservers where srvname = 'SYB_BACKUP'2> go srvnetname...
View ArticleRe: sybase Database Backup
While trying to find a solution, you must have dropped the backupserver and added it again without its physical name. Execute: sp_dropserver SYB_BACKUPgosp_addserver SYB_BACKUP, null, PJ2_BSgo That...
View ArticleRe: sybase Database Backup
Hi Luc, Please find the attachment for your reference. Current status: backup server up and runningError found only in backup server errorlog: The host '10.3.5.61 is notauthirized to connect to this...
View ArticleRe: sybase Database Backup
Please post the output of : ls -l /sybase/PJ2/hosts.allow cat /sybase/PJ2/hosts.allow uname -a cat /sybase/PJ2/ASE-15_0/install/RUN_PJ2_BS cat /sybase/PJ2/ASE-15_0/install/PJ2_BS.log
View ArticleOptimiser difference : a max() sometimes doing a backward scan and sometimes...
I interested why we get 2 different query plans on Sybase 15.5 and 15.7 for similar queriesdeclare @MID intselect @MID = 25717 select MID , max(Date) from CB where MID = @MID group by MID select @MID,...
View Article