sqlanywhere Questions
4
When I run
$ python manage.py inspectdb --database=mssql_database
I have the following error
django.db.utils.Error: ('01000', "[01000] [unixODBC][Driver Manager]Can't open lib '/opt/microsoft/...
Younts asked 5/5, 2022 at 10:29
6
Solved
My question is somewhat the same as Python list of String to SQL IN parameter but I have a list of integers. The python code I use is:
ids = [1000032, 1000048]
sql = 'SELECT CompNo, CompName, Comp...
Fran asked 28/1, 2016 at 12:38
1
Solved
According to this guide I successfully connected to Sybase database in my django project in virtual environment.
After deployment in Apache the web writes this error message
Environment:
Request ...
Vtarj asked 9/2, 2022 at 17:54
3
I am trying to get the table size for each table from a database using SQL Anywhere 11.
I just found out sp_spaceused has been deprecated
Any help with this would be greatly appreciated! :)
Insectivore asked 5/4, 2012 at 20:23
6
Solved
I do not understand why, but somehow this query doesn't work.
I want to take system date -1 day where the sysdate is smaller by 1 day then current date.
WHERE
a.SEND_Date >= dateadd(DD,-1,(CAS...
Guenna asked 12/1, 2016 at 8:33
1
I have an SSIS project that I have not had any issue with for the last year. I can execute the unchanged packages without issue currently from Visual Studio 2019 and as a SQL Agent Job in SSMS.
H...
Pomfret asked 2/9, 2019 at 14:52
3
Solved
I would like use PHP PDO with SqlAnywhere, but don't have the driver on php site. Can I add a lib of sqlanywhere to use with PDO? ODBC is the last option.
Tramel asked 22/10, 2009 at 16:59
2
Solved
I'm trying to retrieve values of out parameter by using ODBC and PHP. I've been searching online but to no avail. There are a lot of resolves for PDO and mysqli and I only found this for odbc. I'm ...
Dybbuk asked 18/1, 2017 at 7:1
2
Solved
To check to see when a database (SQL Anywhere) is fired up and ready to receive requests I am outputting the database message window to a log (text) file and then attempting to read this using Load...
Armchair asked 9/12, 2016 at 10:47
11
Solved
I just downloaded the developer edition of SQL Anywhere. How can I get a list of tables in the database I'm connected to?. Also for a particular table, how do I get the meta-data for that table (co...
Pleiades asked 25/2, 2009 at 9:46
4
Solved
My customer is a dental practice that has bought a piece of practice management software. This software was installed on their local server, including a patient database, a schedule and all manner ...
Berlin asked 12/12, 2010 at 9:8
0
Currently I've the problem that SAP Sybase SQL Anywhere randomly throws NullReferenceExceptions in a service which executes a lot of sql queries. The connections are always created in a using block...
Old asked 14/6, 2016 at 20:25
2
I've this problem with a Sybase IQ database (version SELECT @@version shows Adaptive Server IQ/12.5.0/0306) using the PHP SQL Anywhere extension.
I can't select all rows, i.e. SELECT * from anytab...
Pichardo asked 7/8, 2015 at 8:42
5
Solved
Yes, you can find similar questions numerous times, but:
the most elegant solutions posted here, work for SQL Server, but not for Sybase (in my case Sybase Anywhere 11). I have even found some Syba...
Cecilla asked 23/10, 2013 at 14:25
1
I'm trying to connect to a Sybase (SQL Anywhere 12) database using PHP's PDO. I spent hours trying to find the correct driver and DSN to use, with NO success AT ALL. Everytime I try to edit a sing...
Viral asked 8/4, 2014 at 11:50
12
I have a SQL script that I want to output progress messages as it runs. Having it output messages between SQL statements is easy, however I have some very long running INSERT INTO SELECTs. Is there...
Saffier asked 24/9, 2008 at 19:48
3
I'm going nuts about how the Sybase JDBC driver handles stored procedures with mixed IN and OUT parameters. Check out this simple stored procedure:
CREATE OR REPLACE PROCEDURE p (IN i1 INT, OUT o1...
Lancet asked 29/4, 2011 at 20:32
1
Solved
I'd like to list all available tables in my DB, and be able to sort and filter by row count.
Pluvious asked 29/10, 2013 at 14:18
1
Solved
MySQL's bit_count function is quite useful for some cases:
http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html#function_bit-count
Now I would like to use that function in other databases, t...
Julie asked 30/10, 2011 at 16:57
1
Solved
I develop am webservice based on apache tomcat 6.0.26, apache cxf 2.2.7, spring 3.0, hibernate 3.3 and sybase sqlanywhere 11. im using the latest JDBC Driver from SYBASE jconn.jar Version 6.
The p...
Bondholder asked 7/4, 2010 at 9:54
9
Solved
Are there any good database schema comparison tools out there that support Sybase SQL Anywhere version 10? I've seen a litany of them for SQL Server, a few for MySQL and Oracle, but nothing that su...
Qianaqibla asked 19/9, 2008 at 19:7
3
Solved
A general question.
I am developing for Sybase SQL Anywhere 10. For backwards comptibility reasons, almost all our Stored procedures are written in Transact-SQL.
Are there any advantages or disadv...
Vivacious asked 3/6, 2009 at 15:56
1
© 2022 - 2024 — McMap. All rights reserved.