Re: How to reduce log file of sql anywhere in BO 4
Hi. You normally take a backup and then truncate the log using a command like the following: BACKUP DATABASE DIRECTORY <Some path + file name> TRANSACTION LOG ONLY TRANSACTION LOG TRUNCATE If you...
View ArticleRe: How to reduce log file of sql anywhere in BO 4
This is a workaround to get you running again: 1 - Stop the CMS database service2 - Copy the CMS db and log files to a safe directory to create a full OFFLINE backup.3 - delete this CMS log file4 -...
View ArticleRe: My appliction throwed an exception:Disk full 'Fatal error':disk full when...
- What happens if you validate the database using DBVALID.EXE or the VALIDATE DATABASE statement? - Did you have a 6 digit assertion error being reported as part of this exception? ThanksMark
View ArticleRe: My appliction throwed an exception:Disk full 'Fatal error':disk full when...
Also I would ask on what file system, and how big are the files (.db). Andreas.
View ArticleRe: any problems with sqla being backed up by image backup systems?
Short Answer : Yes. Long Answer : Follow Paul's link, and the links that Jeff Albion posted in the link that Paul posted. Reg
View ArticleRe: any problems with sqla being backed up by image backup systems?
Thank you Paul and Reg,The sqlany link is not working and the sap link needs a sales login.Here are my main concerns/questions...Might an image backup damage a SQLA database?Does a file-by-file backup...
View ArticleRe: any problems with sqla being backed up by image backup systems?
If you attempt to backup a running SQL Anywhere database file using any method other than our dbbackup utility, you are almost guaranteed to end up with a backed up copy of the database that is corrupt...
View ArticleRe: sqlanywhere database not start DBSPAWN ERROR -80
Hi Jose, I am facing the following issue while trying to bring up the SAP BI 4.1 SP2 , as per above instructions enabled logging and found the following errors anything that i am missing please advise,...
View ArticleRe: sqlanywhere database not start DBSPAWN ERROR -80
Hi Shiv, It looks like the database server is unable to load the TCP/IP libraries due to lack of memory. Can you try limiting the max cache size? You use the "-ch" argument to do that, like this:...
View ArticleRe: How to reduce log file of sql anywhere in BO 4
Maybe this link might be helpful for you. SQL Anywhere: Quick! How do I truncate the transaction log?
View Articlesql anywhere 11 input from file problem
the input file has 4 columns separated by tab and is likeUSD 2006-04-26 0.8873 0.85USD 2006-04-27 0.8901 0.85USD 2006-04-28 0.8926 0.86numeric value has up to 4 decimal...
View ArticleRe: How to reduce log file of sql anywhere in BO 4
Hi Mark, I alrdy see that web before, but i can't find folder SQL Anywhere 12. and I don't know how I could find Sybase Central because i find in some web need to sybase central. Sorry, I am new with...
View ArticleRe: How to reduce log file of sql anywhere in BO 4
Hello Maria, If the files cannot be copied then the database server has not been stopped. Check the task manager for any DBSRV12 processes. It might be easier to stop the BI service agent so that all...
View ArticleRe: sql anywhere 11 input from file problem
In which context are you executing the INPUT statement? This is only valid within Interactive SQL (aka ISQL) and not recognised by the server.In any other environment you might want to use LOAD TABLE...
View ArticleRe: SQL query: select billaddress if no delivery address exist.
hi, I think I got it now :-) First: Show me priority all delivery addresses . Otherwise billing addresses: SELECT T1.[CardCode], T2.[Street] FROM OCRD T1 INNER JOIN CRD1 T2 ON T1.CardCode =...
View ArticleRe: How to reduce log file of sql anywhere in BO 4
Hi Maria, The suggestions provided are all valid. What I'll do here is provide answers to your follow-up questions and links to additional resources. The SQLA binaries are located in the following...
View ArticleRe: Database sizing
Your numbers don't sound out of line for what a properly designed database and application could do, but without more details it is hard to give quality advice. As a reference which may help you, we...
View ArticleRe: Merge statement and proxy tables
I can't think of any real concerns, aside from performance. Since merge does branching first (groups rows together which apply to each branch), there could be significant data movement between the...
View ArticleRe: sql anywhere 11 input from file problem
thank youit was in isql I did give up and used load statement even in stored proc last night.
View ArticleRe: How to reduce log file of sql anywhere in BO 4
That command should be run through isql (windows tool) or dbisql (command prompt tool). What it does is to take a copy (backup of the log) and then it truncates it for the connected database... You...
View Article