Tagged Questions
4
votes
1answer
53 views
Converting char to integer in INSERT using IIF and SIMILAR TO
I am using in insert statement to convert BDE table (source) to a Firebird table (destination) using IB Datapump. So the INSERT statement is fed by source table values via parameters. One of the ...
2
votes
1answer
36 views
searching by all fields with like in 2 tables left join - performance issues?
i am doing left join between 2 tables in firebird sql 2.5, and i need to search them as strings with like statement.
it is like :
Table: USER :
ID | NAME | TIME | ADDRESS_FK
.
Table : ...
2
votes
2answers
149 views
How to split comma separated string inside stored procedure?
How to split comma separated string into strings inside store procedure and insert them into a table field?
Using Firebird 2.5
1
vote
1answer
42 views
One result from join between 2 tables?
It is a bit complicated to explain into the main caption, but the situation is as follow :
- I have 2 tables :
Users, Preferences.
defined as follow
Users :
ID | NAME | FK_NODE_PREFERENCES
...
1
vote
2answers
176 views
Updating where id in stored procedure - enormous amount of fetches
UPDATE TABLE SET SOMETHING = 1 WHERE ID IN (SELECT ID FROM STORED_PROCEDURE)
Records in TABLE = 2100
Records from stored procedure = 50
This statement cousing enormous amount of fetches (31M!) on ...
1
vote
2answers
139 views
FIREBIRD How to search only the first word of a field?
I need to search only the first word of a field, ex:
My Table:
Name
---------------------
Henrique Melicio
José Eduardo da Silva
John McFly
My Query (results):
Name
-----------
Henrique
José
...
1
vote
2answers
645 views
Using Reserved Word TimeStamp as a field name (Firebird 2.5)
Am extending the data layer of an existing application to work with FireBird 2.5, in addition to MSSQL and SQLite, but have hit a stumbling block.
I have a field called TimeStamp which stores the ...
1
vote
3answers
647 views
Speeding up SQL query when sorting on foreign keys
This is more of a generic SQL problem but I'm using Firebird 2.5 if anyone knows of a Firebird/Interbase specific optimization. First, the following is a simplified example schema to illustrate the ...
0
votes
1answer
65 views
Firebird - Mix records of two different tables
I'm looking for a way to solve my sql problem.
I have 2 tables in Firebird 2.5 ( T1 and T2 ) like these:
T1 (
T1_ID INTEGER,
T1_DAY DATE,
T1_NAME VARCHAR(200)
)
T2 (
T2_ID INTEGER,
T2_DAY ...
0
votes
3answers
116 views
Calculating a field from SQL Query Selecting from multiple tables with Union
I have the following query, which works great. The problem I have is that in both tables (and the aggregate unioned table), there is a field called MTGUID. I need to multiply MTGUID by a number (let's ...