Tagged Questions
5
votes
3answers
170 views
How does the DBMS affect application performance? And Informix GUI tools?
I use Informix DBMS in all my web applications. My question has two parts:
Does the DBMS have a big effect on the performance of my applications
and if the answer is yes what about Informix and `MS ...
2
votes
3answers
224 views
MS SQL To Informix 11 - Group By converted datetime
I am attempting to move a stored proceedure from Microsoft SQL Server 2000 to Informix 11. The original SP contains a final select statement with a GROUP BY statement that includes a converted ...
0
votes
0answers
146 views
Informix SMALLINT to SQL Server ETL error [closed]
I imported several SE table schemas to SQL Server, where SMALLINT does not exist. So I changed the SMALLINT's to INTEGER's, then ETL'd the SE data to the SQL tables and I'm getting a data load error ...
2
votes
3answers
145 views
Is it possible to Update an SQL Server Database and an Informix Database at the same time?
I was wondering if it is possible to add/update/delete an SQL Server database table, as well as an Informix database table at the same time.
Both databases will have the same table (data and all), so ...
2
votes
3answers
266 views
Does the order of tables in straight joins, with no hint directives, affect performance?
All SQL-based RDBMS' (versions up to 10 years old):
Does the order of tables in a straight join query (with no hint directives) make a difference for optimum performance and memory management? I ...
3
votes
5answers
145 views
How to make my webApp switch between different DBMS smoothly(DB Independency)?
I have a Java web application that has Informix as its back end database. Many tables in my schema contain columns of type CLOB, BLOB & SERIAL8. Now I made a decision to use SQL Server instead of ...
1
vote
0answers
325 views
Oracle error message when trying to get tables from informix database
I created new data source to access an informix database over an odbc data provider(informix 3.33; 32bit). Testing this connection succeeded so i created a new connection manager (new connection from ...
0
votes
1answer
295 views
Which join syntax is better?
So we are migrating from Informix to Sql Server. And I have noticed that in Informix the queries are written in this manner:
select [col1],[col2],[col3],[col4],[col5]
from tableA, tableB
where ...
2
votes
2answers
86 views
Can EXPLAIN provide more than just a Query Plan? [closed]
It would be useful to also know Disk Reads/Writes, Memory, CPU, etc. statistics for a given SQL statement.
1
vote
2answers
297 views
How do I convert this Informix nested join to a tsql nested join?
I'm having a real hard time with this conversion. Those nested OUTER joins are a first to me.
Original Informix query:
from ttdpur401105 tdpur401
, ttdpur400105 tdpur400
-- Problem is here
, ...
1
vote
1answer
184 views
SQL SERVER 2008 version of Informix ENCRYPT_TDES
We have an application that was using the informix ENCRYPT_TDES function. I found that SQL SERVER has a function called ENCRYPTBYPASSPHRASE which also uses TDES. However, the results are very ...
1
vote
1answer
202 views
Options to synch informix database to sql server?
I am trying to get data from an informix database into a Sql Server database. The data needs to be synched either real time or at most 5 minutes. It is about 20 tables and 4 or 5 Gigs, the data for a ...
1
vote
2answers
553 views
Syntax error on stored procedure call to linked server?
I've got an Informix machine I've configured as a linked server in SQL Server.
I can remotely send, and receive the results of, a query for, say
SELECT * FROM ...
1
vote
2answers
91 views
join issue, what are the best alternatives?
Q:
I have 5 or 6 tables , and i need data from these tables :
i make the following join statement to accomplish my query.
SELECT ...
5
votes
7answers
962 views
Data migration between different DBMS's
As i couldnt get any satisfying answer to my Question it seems we have to write our own program for that, we are in the design phase and we are thinking which format shall we use to backup the data.
...
1
vote
1answer
422 views
Column data types changing during Replication
We have a set of MSSQL database servers which normally replicate several databases between them. One server is MSSQL 2008, another is MSSQL 2005, and the last is MSSQL 2000.
This has recently gone ...
2
votes
5answers
711 views
Transfering data between different DBMS's
I would like to transfer the whole Database i have in Informix to Oracle. We have an an application which works on both Databases, one of our customers is moving from Informix to Oracle, and needs to ...
1
vote
3answers
106 views
How can I conditionally construct a table name for an SQL CREATE TABLE statement?
Within an SQL stored procedure, I would like to have the ability to construct a table name and create it. Example: I just logged into my databse under company 03 and a customer table does not exist, ...
1
vote
1answer
327 views
Communicating with Informix from SQL Server
Right... I've got a program I'm doing some maintenance on.
Urgh. Even describing it makes me shudder... Right, okay.
Every night, a database running on what we think is SQL Server 2000 hooks up to ...
1
vote
3answers
410 views
SERIAL-like INT column
I have an app where depending on the type of transaction being added or updated, the ticket number may or may not increment. I can't use a SERIAL datatype for ticket number because it would increment ...
1
vote
2answers
493 views
Linked Informix table in MS SQL Server ignoring criteria?
I’m having a problem with a linked Informix table in MS SQL Server 2008r2. When I query this table, it seems to ignore some of the criteria I’m passing to it but not others. For example if I put a ...
3
votes
2answers
171 views
Which RDBMS has the richest super-set of ANSI-SQL?
Back in 1989, when I used to program with Oracle 5.2.3 on UNIX and VAX/VMS platforms, I considered SQL*PLUS as having the richest super-set of built-in functions. ORACLE*FORMS also had the ability to ...
1
vote
3answers
135 views
Migrating Data to SQL Server 2008
I am trying to migrate data from an Informix database to SQL Server 2008. I've got quite a lot of data to move. I've been try multiple methods to get the data over, and so far SQLBulkCopy in multiple ...
1
vote
2answers
109 views
What are the types and inner workings of a query optimizer?
As I understand it, most query optimizers are "cost-based". Others are "rule-based", or I believe they call it "Syntax Based". So, what's the best way to optimize the syntax of SQL statements to help ...
1
vote
3answers
450 views
Override Locale Date with custom settings.
Aside from the GL Support, is there a way to override locale settings with custom values for month and day when using mmm-dd-yyyy, modified Spanish examples: Jan = ENE, Aug = AGO, or long dates (mmmm) ...
1
vote
4answers
953 views
DATE lookup table (1990/01/01:2041/12/31)
I use a DATE's master table for looking up dates and other values in order to control several events, intervals and calculations within my app. It has rows for every single day begining from ...
2
votes
1answer
234 views
Continuation - Viewing FIRST_ROWS before query completes
I have identified the query constructs my users normally use. Would it make sense for me to create composite indexes to support those constructs and provide FIRST_ROWS capability?
If I migrate from ...
1
vote
1answer
1k views
Unknown cause of linked server error
We have an old Windows 2000 server running SQL Server 2000 Standard Edition, SP3. This has a linked server setup to connect to an Informix DB via an ODBC connection. For most of the year, running ...
1
vote
2answers
6k views
Informix subqueries with FIRST option
What is the best way of transcribing the following Transact-SQL code to Informix Dynamic Server (IDS) 9.40:
Objective: I need the first 50 orders with their respective order lines
select *
from ...
