Re: What exactly is the difference between the SPXX and the SPXXX series?
Not sure why you would say that. It is no different than years ago when we had multiple codelines active. Not everyone is in a hurry to upgrade to new features. Some just need bug fixes on their...
View ArticleRe: What exactly is the difference between the SPXX and the SPXXX series?
Yeah, I was a little confused (initially), too. Do I consider 50 < 102, or SP5 > SP1 ? (numerical sorting vs character sorting) Will get more confusing if/when they get to SP5xx (eg, is SP501...
View ArticleRe: What exactly is the difference between the SPXX and the SPXXX series?
The numbering scheme of XX being just bug fixes and XXX being bug fixes + new features is prone to confusion. Whomever came up with the scheme didn't think things through much at all. It's not as bad...
View ArticleIn stored proc, inner cursor needs variable from outer cursor
I recently came over to Sybase ASE SQL from Microsoft SQL Server. In SQL Server I would often create stored procedures with a nested cursor in which the SELECT statement for the inner cursor contains...
View ArticleRe: Stored procedure performance
The query does not call any UDFs and does not reference any proxy tables. However, a few things to note... ASE servers are running under Solaris 10 on Sun/HP platforms. We have a total of 16 ASE PROD...
View ArticleRe: In stored proc, inner cursor needs variable from outer cursor
There is a subtle difference between ASE cursors declared inside a stored procedure ("server cursors") and cursors declared in ad-hoc SQL ("language cursors"). In ASE, you can declare as many cursors...
View ArticleRe: In stored proc, inner cursor needs variable from outer cursor
You mention stored procedures and batches but I'm not sure which one you can/want-to use in Sybase so fwiw ... Sybase, like MSSQL, allows you to declare multiple cursors within the body of a stored...
View ArticleRe: Afaria on Sybase ASE
Afaria 7 support : Microsoft SQL and Sybase SQL anywhere Afaria 6.6 Suport : Microsoft SQL, Sybase SQL anywhere and Oracle
View ArticleRe: In stored proc, inner cursor needs variable from outer cursor
THANK YOU! These replies really helped. Yes, I was doing this in ad-hoc SQL rather than in a stored procedure. I realized that in order to do various calculations, I needed to use a temp table so I...
View ArticleRe: In stored proc, inner cursor needs variable from outer cursor
Hard to say why you're getting the error messages without seeing the code, error messages, ASE version (there could be a bug with a specific ASE version), and some details on how you're running the...
View ArticleRe: From ASE 12.5 2k page size to 15.7 4k page size
Just to clarify, you cannot dump and load a 2k pagesize dump into a 4k pagesize server. You must use sybmigrate and/or bcp.
View ArticleRe: What exactly is the difference between the SPXX and the SPXXX series?
Release vversion numbers of SP50 and SP10x are really confusing.
View ArticleRe: How simulate a logical 'OR' and 'AND in T-SQL?
Hi Rick, sorry, but you are not correct - T-SQL does support logical operators. Consider: IF (1 = 1) AND (2 > 1)begin print "Both are TRUE"endIF (1 = 1) OR (1 > 2)begin print "One of them...
View ArticleRe: How simulate a logical 'OR' and 'AND in T-SQL?
Hi RickJon is correct, but if you really wanted to, OR would look like this If condition1 then begin --dothis endelse if condition2 then begin --dothis end But that is...
View ArticleASE 16: When and what major features?
Are we looking at 2014 for the GA release of ASE 16.0? What are the major features that we can expect in the release?
View ArticleRe: ASE 16: When and what major features?
Hi Jason, http://scn.sap.com/docs/DOC-40057 http://scn.sap.com/community/sybase-sql-anywhere/blog/2013/03/06/coming-soon-sql-anywhere-16-data-synchronization-new-features-webcast
View ArticleRe: ASE 16: When and what major features?
Jason's looking for details on *ASE* 16 ... those links are for *ASA* (aka SQL Anywhere) 16 ... different products.
View ArticleRe: ASE 16: When and what major features?
Thanks Srinivasan, It saves me from asking the same question on the SQL Anywhere forum Mark is correct, in this particular post, I'm asking about ASE 16.0. jason
View ArticleRe: From ASE 12.5 2k page size to 15.7 4k page size
Just a fyi, the *default* block size for Linux is 4k for the ext3 and ext4 file systems. You can actually use larger block sizes with ext4 or other file systems.
View ArticleRe: How simulate a logical 'OR' and 'AND in T-SQL?
Thank you. The scary thing is that I used to know this. Of course there's an AND and OR. btw, am I posting in the correct user forum for questions like this? I'm not sure what "for custom...
View Article