|
More site info...
|
|
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.
|
|
|
|
|
Posting activity on Sybase:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
16
|
96
|
267
|
|
Post:
|
25
|
147
|
482
|
|
|
Sybase Posting activity graph:
|
Top authors during last week:
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
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
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...
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.
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....
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,
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
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::
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).
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....
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...
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
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.
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 ...
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?
|
|
Hot threads for last week on 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...
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).
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 ...
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
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....
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.
|
|