Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
226 views

Select max date row from results

Using Pervasive SQL, I have a result set: Tp_No Name State Eff_Date Actual Billed 1006 ABC TN 2006-07-01 .1 .5 1006 ABC TN ...
3
votes
7answers
539 views

SQL statement with LIKE

I would like to select all records that have an underscore character in their 11th character, so i try this: SELECT * FROM "BOM_SUB_LEVEL" where TOP_CODE like '%%%%%%%%%%_%%%' but this doesnt work ...
2
votes
1answer
233 views

Pervasive SQL ADO.NET data provider

I have an asp.net, c# application using MSSQL 2008 server. At some point, i also want to insert some data into a pervasive v10 database. Was looking for the pervasive data provider from ...
1
vote
4answers
282 views

how to apply Group By to this SQL Query

I'm trying to make a list of inventory to be counted, provided the item has had a sale in the last 2 months: I'm using Pervasive SQL and it's a BusinessVision table. This query works, but I don't know ...
0
votes
0answers
17 views

Random Invalid password when connecting to Sage Timberline PervasiveSQL database over odbc using php

I have a web app doing some number crunching and updating a Sage Timberline database, which I understand to be PervasiveSQL/BTrieve or something ugly. $con = odbc_connect("dsn", "user", 'pw') or ...
0
votes
2answers
63 views

How can I eliminate the subquery from this sql query?

I have a query which should work, but it seems I am a victim of a poor database technology. I need to run the query below on a Pervasive SQL database. The manufacturer of the product using Pervasive ...
0
votes
1answer
176 views

Creating a DSNless connection to Pervasive in VBA

I'm very new at connecting to databases so I apologise if I'm not familiar with some of the terminology. I would like to open up a DSNless connection to the pervasive database using VBA and I'm ...
0
votes
2answers
60 views

Dynamic SQL statement return value using the current target connection

I'm currently creating my first real life project in Pervasive. The task is to map a certain XML structure containing orders (as in shops and products) to 3 tables I created myself. These tables rest ...
0
votes
2answers
146 views

Pervasive SQL GRANT syntax

I've been Googling for half an hour now, and can't seem to find the right place... How do I add a user and grant that user access to all tables in the database? Found some GRANT snippets, but there ...
0
votes
4answers
875 views

Year, Month, and Day parameters describe an un-representable DateTime how to ignore

I am using ODBC to read data from a pervasive PSQL database and in some scenarios, the date column can contain 00/00/0000 date. I don't really care about invalid dates so is there some way I can ...
0
votes
2answers
174 views

Invalid table or object when doing query on temp table (Pervasive SQL)

I have a SP that inserts records into a temp table, then selects the records and returns them. The SQL is this. I troubleshot it by removing the INSERT INTO statement, and minimizing the SQL. The ...
0
votes
0answers
200 views

Add a column to an INSERT / SELECT statement in Pervasive SQL

I am trying to do something really simple. I want to add a blank column to a temp table because my calling program expects that column. I thought I had it right but Pervasive doesn't like it (it says ...
0
votes
1answer
262 views

Get latest exchange rate for all currencies

I have a database with a lot a currencies and each row has a currency, datestamp and the exchange rate. What I would like to have is a query that gets me the latest exchange rate for all the ...
0
votes
2answers
163 views

How to query a column with an awkward date format

Here is how the date is formatted: XXXXXX001221 This date is for Dec 21 If I want to get yesterdays entries using the CURDATE() function how would I do this?
0
votes
4answers
163 views

Improving SQL Code

I'm using Pervasive SQL. I have the following UNION of mulitple SQL statements. Is there a way to clean this up, especially the Pay Date an the Loc No fields that are selected in each statement. Is ...
0
votes
1answer
208 views

SQL How to find out what tables have a certain column

Is it possible to construct a query so that I can find out what tables have a partuclar column? Then if it has the column query that table for an ID number? Is this possible?
0
votes
3answers
217 views

Most efficient way to select records in one database based on result set from totally different database

I have 2 totally separate databases - one MSSQL and one Pervasive. Due to the way our product data is stored in the Pervasive database, you cannot easily run a query to get a products's information ...