sladebe
Active Participant
Member since ‎02-06-2014

User Statistics

  • 329 Posts
  • 7 Solutions
  • 111 Kudos given
  • 79 Kudos received

User Activity

So I had a problem with a replicate DSI connection.  It went down with some reasonable error (couldn't insert to the destination table because it didn't exist).  So I ran "sysadmin log_first_tran" to get more details about the insert being run.When I...
A normal shutdown command waits for running users queries to finish. Although it doesn't say this on the reference page, apparently a normal shutdown also flushes free space accounting figures and object statistics (link) I guess I could write my o...
Using "literal autoparam" with the statement cache active is well explained. But I don't understand the new "enable literal autoparam" setting of 2 ("converts literal values to parameter descriptions only for ad hoc queries") "Only for ad hoc que...
If you run a Python script like this: conn = sybpydb.connect(user='user', password='password') cur = conn.cursor() cur.execute("if 1=1 select 1") rows=cur.fetchmany() for row in rows: print(f"row={row}") The fetchmany() command will return the...
A basic piece of code using the ASE Python SDK libraries doesn't work conn = sybpydb.connect(user='user', password='password') cur = conn.cursor() cur.execute("if 1=1 select 1") # This fetchmany call will return the error: # sybpydb.ProgrammingError:...