Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Sybase | Forum profile

Forum profile page for Sybase on http://www.dbforums.com. This report page is the aggregated overview from a single forum: Sybase, located on the Message Board at http://www.dbforums.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Sybase" on the Message Board at http://www.dbforums.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: dBforums - Database Support Community - Sybase (site profile, domain info dbforums.com)
Title: Sybase
Url: http://www.dbforums.com/sybase/
Users activity: 18 post per thread
Forum activity: 16 active threads during last week
 

Posting activity on Sybase:

  Week Month 3 Months
Threads: 16 96 267
Post: 25 147 482
 

Sybase Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
ashoomds
2
user's latest post:
finding max difference in a sql..
Published (2009-11-20 06:37:00)
More simple version for the above sql that I can think of is finding the max diff on the salary based on the id. : ID SALARY 1 50 1 100 2 50 2 150 3 200 4 500 Result should look like & in the descending order: ID SALDIFF 2 100 1 50
mhandsley2001
2
user's latest post:
ERROR : During redo the page...
Published (2009-11-20 06:11:00)
Can you view the database dump? loada database <dbnam> from <filename> with listonly
iankey
1
user's latest post:
about Dbisql run in shell
Published (2009-11-18 01:06:00)
hi, When I run the script below ,occur one error. bash-2.05$ dbisql -nogui -onerror exit -c "eng- iqtest;uid=DBA;pwd=SQL;links=tcpip{host=10.90.1.21 1;port=2688}" <<EOF >select top 1 * from table1 ; >EOF (DBA)>select top 1 * from table1 ; (DBA)> Execution time: 0.067 seconds The result returned is non-deterministic. SQLCODE=122, ODBC 3 State="01000" Line 1, column 1...
ishu.cs
1
user's latest post:
about Dbisql run in shell
Published (2009-11-19 02:15:00)
I guess you should put the EOF at the end where your all SQL statements end.
ishu.cs ishu.cs is offline...
1
user's latest post:
about Dbisql run in shell
Published (2009-11-19 02:15:00)
I guess you should put the EOF at the end where your all SQL statements end.
danne99se
1
user's latest post:
how can I increase the interval...
Published (2009-11-22 09:00:00)
Hello, I have a system running on ASE 15.0.2, no ESD's loaded. Few weeks ago sybase shutdown, the root cause has been identified to be a memory leak in that happens every time RSA keypairs are generated. There is a correction for this fault in ESD4 but unfortunately I will not be able to load this ESD in quite long time. This is a fact even if I dont like it. Now Im looking for some work arounds that can be used for the server. 1....
danne99se danne99se is offline...
1
user's latest post:
how can I increase the interval...
Published (2009-11-22 09:00:00)
Hello, I have a system running on ASE 15.0.2, no ESD's loaded. Few weeks ago sybase shutdown, the root cause has been identified to be a memory leak in that happens every time RSA keypairs are generated. There is a correction for this fault in ESD4 but unfortunately I will not be able to load this ESD in quite long time. This is a fact even if I dont like it. Now Im looking for some work arounds that can be used for the server. 1....
lchen
1
user's latest post:
bcp out sybase and bcp into MS...
Published (2009-11-24 12:22:00)
I need to bcp out from a sybase table but only need a subset of the columns, not all the columns and then bcp them into a MS sql server table. Does a format file work in this case? If so, how do you creat this format file? Also, if I bcp out the entire table from Sybase without skipping columns, is there anything I can do on the SQL server end to eliminate some of the sybase columns when I bcp in? thanks,
aflorin27
1
user's latest post:
finding max difference in a sql..
Published (2009-11-24 04:28:00)
Select a.ID, (a.MaxSal - b.MinSal) as SalDiff From ( Select ID, Max(Salary) as MaxSal From SalTest Group By ID ) a, ( Select ID, Min(Salary) as MinSal From SalTest Group By ID ) b where a.ID = b.ID order by SalDiff desc
MCrowley
1
user's latest post:
bcp out sybase and bcp into MS...
Published (2009-11-24 12:30:00)
Easiest way would be to create a view of the columns you want, then BCP out the view.
 

Latest active threads on Sybase::

dBforums - Database Support Community
Started 3 days, 18 hours ago (2009-11-26 04:37:00)  by jannovak
Hi, In general: Export the data from MySQL into files. Import them into Sybase (using bcp).
Thread:  Show this thread (3 posts)   Thread info: Sybase and changing from another DBMS Size: 100 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Hi,
In general: Export the data from MySQL into files. Import them into Sybase
(using bcp). :: Sybase :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 3 weeks, 6 days ago (2009-11-02 06:20:00)  by miguialberto miguialberto is offline Registered User
Hi, I have a replication environment with one replication server (REP) and two ASE servers (ASE_A and ASE_B). Replication can work only in one direction: from ASE_A to ASE_B OR from ASE_B to ASE_A. Always a replication agent is working in ASE_A or ASE_B and a replication agent is down in ASE_B OR ASE_A. Nevertheless, connections from ASE_A to ASE_B and from ASE_B to ASE_A are ALWAYS up....
Thread:  Show this thread (4 posts)   Thread info: Automatic set to valid of secondary truncation point Size: 1,500 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Automatic set to valid of secondary truncation point :: Sybase :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 5 days, 10 hours ago (2009-11-24 12:22:00)  by lchen lchen is offline Registered User
I need to bcp out from a sybase table but only need a subset of the columns, not all the columns and then bcp them into a MS sql server table. Does a format file work in this case? If so, how do you creat this format file? Also, if I bcp out the entire table from Sybase without skipping columns, is there anything I can do on the SQL server end to eliminate some of the sybase columns when...
Thread:  Show this thread (4 posts)   Thread info: bcp out sybase and bcp into MS sql server Size: 446 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: bcp out sybase and bcp into MS sql server :: Sybase :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 1 week, 2 days ago (2009-11-20 06:37:00)  by ashoomds
More simple version for the above sql that I can think of is finding the max diff on the salary based on the id. : ID SALARY 1 50 1 100 2 50 2 150 3 200 4 500 Result should look like & in the descending order: ID SALDIFF 2 100 1 50
Thread:  Show this thread (4 posts)   Thread info: finding max difference in a sql.. Size: 482 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: More simple version for the above sql that I can think of is finding the
max diff on the... :: Sybase :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 3 weeks, 1 day ago (2009-11-07 12:50:00)  by jannovak
I would guess that it is caused by corruption in the database transferred to dump.
Thread:  Show this thread (8 posts)   Thread info: ERROR : During redo the page timestamp value is less than old timestamp
from Size: 82 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: I would guess that it is caused by corruption in the database transferred
to dump. :: Sybase :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 1 week ago (2009-11-22 09:00:00)  by danne99se danne99se is offline Registered User
Hello, I have a system running on ASE 15.0.2, no ESD's loaded. Few weeks ago sybase shutdown, the root cause has been identified to be a memory leak in that happens every time RSA keypairs are generated. There is a correction for this fault in ESD4 but unfortunately I will not be able to load this ESD in quite long time. This is a fact even if I dont like it. Now Im looking for some work ...
Thread:  Show this thread (2 posts)   Thread info: how can I increase the interval for RSA keypair generation Size: 1,759 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: how can I increase the interval for RSA keypair generation :: Sybase :: dBforums - Database Support Community"
dBforums - Database Support Community
Started 1 week, 2 days ago (2009-11-20 05:51:00)  by mhandsley2001
if your sure that the application code is correct, I would look at the underlying t-sql, as it looks like your previous transaction is not being closed correctly. Is the transaction being 'commit'ed correctly?
Thread:  Show this thread (2 posts)   Thread info: Sybase server returning error Size: 210 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: if your sure that the application code is correct, I would look at the
underlying t-sql, as it looks... :: Sybase :: dBforums - Database Support Community"
 

Hot threads for last week on Sybase::

Sybase
Started 5 days, 10 hours ago (2009-11-24 12:22:00)  by lchen lchen is offline Registered User
I need to bcp out from a sybase table but only need a subset of the columns, not all the columns and then bcp them into a MS sql server table. Does a format file work in this case? If so, how do you creat this format file? Also, if I bcp out the entire table from Sybase without skipping columns, is there anything I can do on the SQL server end to eliminate some of the sybase columns when...
Thread:  Show this thread (4 posts)   Thread info: bcp out sybase and bcp into MS sql server Size: 446 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: bcp out sybase and bcp into MS sql server :: Sybase :: dBforums - Database Support Community"
Sybase
Started 3 days, 18 hours ago (2009-11-26 04:37:00)  by jannovak
Hi, In general: Export the data from MySQL into files. Import them into Sybase (using bcp).
Thread:  Show this thread (3 posts)   Thread info: Sybase and changing from another DBMS Size: 100 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Hi,
In general: Export the data from MySQL into files. Import them into Sybase
(using bcp). :: Sybase :: dBforums - Database Support Community"
Sybase
Started 1 week ago (2009-11-22 09:00:00)  by danne99se danne99se is offline Registered User
Hello, I have a system running on ASE 15.0.2, no ESD's loaded. Few weeks ago sybase shutdown, the root cause has been identified to be a memory leak in that happens every time RSA keypairs are generated. There is a correction for this fault in ESD4 but unfortunately I will not be able to load this ESD in quite long time. This is a fact even if I dont like it. Now Im looking for some work ...
Thread:  Show this thread (2 posts)   Thread info: how can I increase the interval for RSA keypair generation Size: 1,759 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: how can I increase the interval for RSA keypair generation :: Sybase :: dBforums - Database Support Community"
Sybase
Started 1 week, 2 days ago (2009-11-20 06:37:00)  by ashoomds
More simple version for the above sql that I can think of is finding the max diff on the salary based on the id. : ID SALARY 1 50 1 100 2 50 2 150 3 200 4 500 Result should look like & in the descending order: ID SALDIFF 2 100 1 50
Thread:  Show this thread (4 posts)   Thread info: finding max difference in a sql.. Size: 482 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: More simple version for the above sql that I can think of is finding the
max diff on the... :: Sybase :: dBforums - Database Support Community"
Sybase
Started 3 weeks, 6 days ago (2009-11-02 06:20:00)  by miguialberto miguialberto is offline Registered User
Hi, I have a replication environment with one replication server (REP) and two ASE servers (ASE_A and ASE_B). Replication can work only in one direction: from ASE_A to ASE_B OR from ASE_B to ASE_A. Always a replication agent is working in ASE_A or ASE_B and a replication agent is down in ASE_B OR ASE_A. Nevertheless, connections from ASE_A to ASE_B and from ASE_B to ASE_A are ALWAYS up....
Thread:  Show this thread (4 posts)   Thread info: Automatic set to valid of secondary truncation point Size: 1,500 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Automatic set to valid of secondary truncation point :: Sybase :: dBforums - Database Support Community"
Sybase
Started 3 weeks, 1 day ago (2009-11-07 12:50:00)  by jannovak
I would guess that it is caused by corruption in the database transferred to dump.
Thread:  Show this thread (8 posts)   Thread info: ERROR : During redo the page timestamp value is less than old timestamp
from Size: 82 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: I would guess that it is caused by corruption in the database transferred
to dump. :: Sybase :: dBforums - Database Support Community"