Sybase Replicated database copy

Refreshing a Primary Database of a Replication setup into DEV/QA. When we load a replicated database into another ASE server, it will not jump online due to the secondary truncation point that was set in the source database. In other words after the load is completed, when you issue the online database command it will  fail due to the secondary truncation point that was used by the  replication agent. (more…)
Read More

Sybase SQSH

I'm not a big fan of the Sybase provided isql tool. I prefer the far better sqsh (pronounced skwish) replacement. it provides many features isql is lacking like searching through queries, using a ; to end a query and much better OS redirection of results. (more…)
Read More

Sybase ASE performance tuning

Check performance We can check the performance of the ASE engine by using the sp_sysmon procedure. This procedure will monitor the engine for the given time spew out a long report. This allows us to see our performance and adjust the engine where needed. Sometimes sp_sysmon gives a direct recommendation at the bottom which is always good to looking to. Of course it helps to start sp_sysmon when the database is under high load.   Type Command Data cache sp_sysmon "00:05:00" , dcache; Procedure cache sp_sysmon "00:05:00" , pcache; Memory sp_sysm...
Read More

SnapRAID

If you are worried like me about data degradation on your document/archive NAS it might be worthwhile looking into SnapRAID. SnapRAID is a backup solution for disk arrays. It creates hashes on a extra disk to ensure data integrity and gives you a additional recover option for the failed array disk. As an extra benefit you can recover specific files from accidental deletion and verify the current data set. I am using this mostly for the last option because it gives a extra layer of safety on those important files I don't want to see get corrupted without taking a 1 on 1 backup. Let's have a ...
Read More