Re: Migrating Sybase ASE to SQL
Good luck. Most of the database vendors -- SAP/Sybase included -- give you tools to migrate from "other" competing database vendors. Similarly MS also provides you some migration tool. The data...
View ArticleRe: Migrating Sybase ASE to SQL
Thanks Rob. I don't frequent the Sybase side of things terribly often, so I suppose I was a little out of my element
View ArticleRe: Migrating Sybase ASE to SQL
Thank you Avinash. I do not deal with Sybase products terribly often, so I appreciate your insight very much.
View ArticleRe: Migrating Sybase ASE to SQL
I've done a ASE -> MS-SQL migration - in my experience 90% of the task is easy - but depends what code has been written. If you have a large amount of data I'd recommend splitting the data migration...
View ArticleRe: Migrating Sybase ASE to SQL
Hi, I'd like to add this doc: Is is a good read, if you have to deal with both worlds: http://download.microsoft.com/download/e/c/8/ec8d5025-7ef7-4dcc-a9f3-9c297cf5350e/ssmasybase.docx HTH
View Articlegetting data quickly from a master backup
Recently I was asked to recover a corrupted instance from backupsI ran into some issues with corrupted devices and decided a rebuild would be much faster then a recoveryHowever, I needed to reload the...
View ArticleRe: getting data quickly from a master backup
Hi Jeroen is this not possible through Archive Database Access (SyBooks Online) Regards, Harry
View ArticleRe: getting data quickly from a master backup
was thinking about thatbut not applicable in this case because backups made with compress::
View ArticleRe: getting data quickly from a master backup
Thats a pity ;-( use with compression = next time ;-)
View Articledbcc tune (des_bind)
We're getting a lot of contention on resource->rdesmgr_spin The advise here http://wiki.scn.sap.com/wiki/display/SYBASE/Spinlocks+and+CPU+usage+in+SAP+ASE#is to use dbcc tune(des_bind,) but...
View ArticleRe: dbcc tune (des_bind)
Creating a named cache will not help this - this is spinning on the spinlock for the object DES structure - which has pointers to indexes in memory, etc - but it does NOT contain catalog information....
View ArticleRe: dbcc tune (des_bind)
Thanks for the information. I should be able to identify heavily used procedures - will see how much that improves things.Can I drop the proc if its bound ? How would you bind temporary tables ?
View ArticleRe: dbcc tune (des_bind)
Mike, FWIW, I did some testing on one of our apps some years ago to try to reduce desmgr spinning. This application uses temp tables exceptionally heavily with the driving tables created outside the...
View ArticleRe: dbcc tune (des_bind)
Thanks for this. Very useful A little confused with the results....Binding top 16 tables, reduces CPU by 9% but binding all tables reduces CPU by 5% Binding tables and procs uses more CPU than binding...
View ArticleRe: dbcc tune (des_bind)
Just down to variability really, the test in question is not strictly identical each time anyway. Also the server, whilst only a development server was not isolated so other tasks are using the cpu...
View ArticleMultiple Temporary Databases
We're currently running ASE 15.7 SP 63.We've recently had what might be some contention issues in tempdb, we're still investigating.However, this brought up a question: are there any good guidelines as...
View ArticleRe: Multiple Temporary Databases
It would probably help to know more about the type of contention. [Assuming some memory/cache related contention; assuming high % of dataserver activity is tempdb related] If you've got the memory, I'd...
View ArticleRe: getting data quickly from a master backup
Hi Jeroen,Dataserver process have many options, I remember once I pass through this situation and I simply build a new instance with dataserver process and also specify master recovery so then I...
View Article