You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
(3) |
Apr
(26) |
May
(7) |
Jun
|
Jul
(12) |
Aug
|
Sep
(13) |
Oct
(6) |
Nov
(14) |
Dec
(14) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(31) |
Feb
(15) |
Mar
(6) |
Apr
(18) |
May
(11) |
Jun
(3) |
Jul
(7) |
Aug
(5) |
Sep
(6) |
Oct
(1) |
Nov
(2) |
Dec
(6) |
| 2004 |
Jan
(3) |
Feb
(3) |
Mar
(18) |
Apr
(4) |
May
(13) |
Jun
(32) |
Jul
(21) |
Aug
(22) |
Sep
(11) |
Oct
(2) |
Nov
(6) |
Dec
(5) |
| 2005 |
Jan
(4) |
Feb
(16) |
Mar
(21) |
Apr
(10) |
May
(1) |
Jun
(5) |
Jul
(3) |
Aug
(3) |
Sep
(13) |
Oct
(15) |
Nov
(20) |
Dec
|
| 2006 |
Jan
(3) |
Feb
(1) |
Mar
(3) |
Apr
(5) |
May
(4) |
Jun
(6) |
Jul
(23) |
Aug
(6) |
Sep
(5) |
Oct
(8) |
Nov
|
Dec
(12) |
| 2007 |
Jan
(2) |
Feb
(5) |
Mar
|
Apr
|
May
(9) |
Jun
(1) |
Jul
(6) |
Aug
(5) |
Sep
(3) |
Oct
|
Nov
(5) |
Dec
(6) |
| 2008 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
(3) |
May
|
Jun
(12) |
Jul
|
Aug
(1) |
Sep
|
Oct
(7) |
Nov
(1) |
Dec
(4) |
| 2009 |
Jan
|
Feb
(2) |
Mar
(16) |
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
(21) |
Sep
(11) |
Oct
(4) |
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
| 2011 |
Jan
(9) |
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(1) |
Nov
|
Dec
(1) |
| 2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
(1) |
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Harri P. <har...@tr...> - 2002-04-03 04:19:38
|
Me again, Forgot to mention an installation/build problem with the Sybase module. On Linux Mandrake 8.1 + some patches, Python 2.2, the module linked with libintl.so from Sybase. But at runtime it picked up the library from /usr/lib, which is of course not the Sybase lib, even if has the same name. My workaround for the above was to create a symlink libsybintl.so -> libintl.so in the sybase lib directory, and tweak the setup.py to use libsybintl.so. -Harri |
|
From: Harri P. <har...@tr...> - 2002-04-03 04:08:53
|
Hello,
I think the old problem with calling some stored procedures still seems to be
there.
Namely, I still can't get any sensible results from calling sp_helpindex.
The code is something like:
def getindex(table):
print "getindex", table
c = cnx.cursor()
c.callproc("sp_helpindex", [table])
l = c.fetchall()
print l
while c.nextset():
l = c.fetchall()
print l
cnx=Sybase.connect("<server>","<uname>","<pass>")
cnx.cursor().execute("use mydb")
getindex("mytable")
-Harri
|
|
From: Dave C. <dj...@ob...> - 2002-03-24 00:25:27
|
> Hi listers, I am trying to call a stored procedure using module v2.0
> on Sybase version 11.9.2. The problem is that not all the records I
> am querying for using the stored procedure are returned in the
> result set. Below is a snippet of my code:
>
> #
> #Call stored procedure to get MO notification list(based on outage type)
> #
> db=Sybase.connect("<server>","<uname>","<pass>#",auto_commit=1)
> c=db.cursor()
> c.callproc('sp_get_mo_notification_list',tkt)
> c.nextset()
>
> r=c.fetchall()
>
> print "NTFY LIST: " +str(r)
>
> Is there anything else I should be doing in order to fetch all the
> records I need? Any help is greatly appreciated.
The first call to nextset() is going to be discarding a set of rows I
think.
Can you try doing this:
c.callproc('sp_get_mo_notification_list',tkt)
while 1:
r=c.fetchall()
print "NTFY LIST: " +str(r)
if not c.nextset():
break
- Dave
--
http://www.object-craft.com.au
|
|
From: Potian, J. (Exchange) <jp...@be...> - 2002-03-22 09:54:39
|
Hi listers,
I am trying to call a stored procedure using module v2.0 on Sybase version
11.9.2. The problem is that not all the records I am querying for using the
stored procedure are returned in the result set. Below is a snippet of my
code:
#
#Call stored procedure to get MO notification list(based on outage type)
#
db=Sybase.connect("<server>","<uname>","<pass>#",auto_commit=1)
c=db.cursor()
c.callproc('sp_get_mo_notification_list',tkt)
c.nextset()
r=c.fetchall()
print "NTFY LIST: " +str(r)
Is there anything else I should be doing in order to fetch all the records I
need? Any help is greatly appreciated.
Regards,
Jon-Marcelius Potian
Bear Stearns & Co.
IT - Problem Management
Phone: 973-793-7053
Fax: 973-793-5775
Pager: 1-800-515-BEAR
**********************************************************************
Please be aware that, notwithstanding the fact that the person sending
this communication has an address in Bear Stearns' e-mail system, this
person is not an employee, agent or representative of Bear Stearns.
Accordingly, this person has no power or authority to represent, make
any recommendation, solicitation, offer or statements or disclose
information on behalf of or in any way bind Bear Stearns or any of its
affiliates.
**********************************************************************
|
|
From: Andrew M. <an...@ob...> - 2002-03-21 20:19:55
|
A message to get the wrinkles out of Mailman. -- Andrew McNamara, Senior Developer, Object Craft http://www.object-craft.com.au/ |