As long as you aren’t running queries that join tables between databases you can have a database in a different collation for ever. It doesn’t effect the length of time the database can be hosed on that instance. You could have each user database on the server have a different collation if you wanted to.
Unless you file file descriptions for both systems and the field names care exactly the same, a tool is not going to be found that can do this. You need to define all your fields in the source system and the files they are comming from. Then do the same with the target system. Most [...]
Check out XAMPP for the php/mysql/apache part and you should be able to put a j2ee solution into that. http://www.apachefriends.org/en/xampp.html
A true “view” automatically updates when the underlying data is updated. Also, in SQL Server an “indexed view” also refreshes automatically. If this is an Oracle materialized view, then the view definition can specify the refresh method for automatic refreshing (periodically on a timed basis or whenever an underlying table is changed). You would need [...]
I just figured out the answer. I coded the command button to open the subform/child, instead of just making it visible. This bypassed the main form/parent and caused the problem. When I set the subform as invisible and made it visible when the command button was clicked, the foreign key was there. That way the [...]
I would try using a program such as the windows xcopy or this third party xxcopy that can be found here: http://www.xxcopy.com/index.htm if your system does not have xcopy on it you can find it here: http://www.uv.tietgen.dk/staff/mlha/Download/dos/#XCOPY I have also had luck with robpcopy from Microsoft which is located here: http://www.microsoft.com/Downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd Any of these programs [...]
The query variable is invalid in the query and in the CL. In the QM Query, give the variable a meaningful name, preceded by an ampersand ie. &TRAN. in the CL, the SETVAR part of the STRQMQRY statement should read ((TRAN ‘FCT’)), where the QM Query variable is first WITHOUT THE AMPERSAND and the value [...]
Thank you for visiting ITKE. We are happy to help you with solving specific IT questions, but need as much information as possible to do so. Let us know about the problem you are trying to solve, how you are approaching it and what work you’ve done so far, and we can help guide you [...]
Do you have this <a href=”http://www.microsoft.com/downloads/details.aspx?FamilyID=4d951911-3e7e-4ae6-b059-a2e79ed87041&displaylang=en”> </a> installed? 2282 indicates that the software probably isn’t installed. When I get 2282 I call an error handling proceedure that installs the download on this linked page. Personally I perfer the <pre> DoCmd.SendObject acSendReport, REPORTNAME, acFormatPDF, TOADDRESS, CCADDRESS, BCCADDRESS, Subject, Message, False </pre> to send an email or [...]
You can make it in just about anything you are comfortable with. ASP, C#, VB.NET all come to mind right off the bat.
First, everything is in some kind of “transaction”. When you do a “Begin Transaction”, you are stating that everything up to the next “Commit” (or Rollback) is to be considered as a single transaction. If you execute a SQL statement when there is no “Begin Transaction” active, that single statement is itself a transaction. From [...]
Is this what you are looking for? your original query SELECT ….. FROM … WHERE … then follow up with SELECT COUNT(*) FROM … WHERE … use the same FROM and WHERE clauses and it will give you a count. Alternatively, does your product have access to the equivalent of the DB2 SQLCA? In the [...]
Emp_Pat_Dept_Data is the name created with the create view, so you should be able to use it in SQL commands. If you use that view you will only see the fields in the view’s field list The fields will have the field names assigned in the view. Phil =============== Well, I don’t know why it [...]
There are multiple ways to solve your issue. If I understood correctly you want to insert records to a table based on click event of a button. 1. First design a table with fields you want to capture using this form. 2. Than design the unbound form where textbox are not linked to any table. [...]
\yourservernameqibmProdDataCA400ExpressInstallImageSetup.exe or \yourserverIPqibmProdDataCA400ExpressInstallImageSetup.exe
by “database perf mgmt software” are you referring to database monitors? If so, then YES they are stand-alone in the sense that they do not need anything else in order to execute and also NO in the sense that they need information from the database (via journaling or SMF or something) in order to communicate [...]
Minidach: Using JDBC, you can directly access an MS-SQL database. If you visit the SYstem i Network website and forums, you will find several articles, down-loadable code, etc. You MAY be able to access an MS-SQL database using IBM i DB2 SQL, but I have not personally done that. HTH Jon Juracich.
ODBC is for microsoft and JDBC is for Java. JBDC is portable across platforms where ODBC is not. See the following for more information: Also, a quick Google search shows 32,900 hits for “Difference between ODBC and JDBC”. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Thank you. I have seen all of those in my search already. I guess I was [...]
One never specifically accesses a DB2 index. consider a SELECT statement – one specifies the columns and the table. DB2 may or may not use one or more indices to get you your answer, but you do not name an index.
The term ‘DATA CAPTURE NONE’ is an SQL 2008 term Journaling on the 400 is about the same — but it’s been around a lot longer. If a collection exists and you create the table in the collection it will be journalled ———————- DATA CAPTURE is a valid clause in a CREATE TABLE (and ALTER [...]





