Either the table doesn’t exist, you’ve got the wrong schema, or you don’t have rights to use the object.
It is acting like there is a problem with the database connection. Do you know if the Access database is corrupted or are the tables being used by someone else? When you close VB, do you close the db connection? You may need to close and open you dataset inside VB to see the new [...]
That is one broad topic! If you haven’t already done so, you may want to review <a href=”http://www.redbooks.ibm.com/abstracts/sg246393.html”>Modernizing IBM eServer iSeries Application Data Access – A Roadmap Cornerstone</a>, a redbook IBM put out a few years ago discussing the movement from DDS and traditional data management to SQL. One of the nice things is that, [...]
Hi Pinki, Every Oracle database contains a tablespace named SYSTEM, which Oracle creates automatically when the database is created. The SYSTEM tablespace is always online when the database is open. To take advantage of the benefits of locally managed tablespaces, you can create a locally managed SYSTEM tablespace, or you can migrate an existing dictionary [...]
Character fields have values such as 10002- (right justified). Binary fields have values that can represent -10002, but are not right justified or controlled in terms of where the sign is stored. If you have a field BinaryFld with is defined as ’9b 0′, which would mean a 4-byte buffer, then to set (or populate) [...]
Suggestion is somthing like the following: . ${HOME}/.profile …… sqlplus $ASQLUSER @$SQL_DEPOT/sqlplus_filename.sql …… if [ Check-ERROR-Condition-of-SQL-Output-File ] then echo “The Tariff Group Revert Back to Residential Type Customer for Antillia is not completed.” | mailx -s “A NTILLIA BOC ERROR $0″ $MAILTO exit; fi = = = = = = = = = = = [...]
You will want to join to the writers table twice. Once with an inner join for the author, and once with a left outer join for the translator. <pre>SELECT articles.article_id, writers.writer_name, trans.writer_name as translator_name FROM articles INNER JOIN writers on artciles.writer_id = writers.id LEFT OUTER JOIN writers as trans ON articles.translator_id = trans.id</pre>
Hi, It sounds like something isn’t implemented in the system you’re using. Your code works for me in Oracle 10 and also in SQL Server 2005. What are you using? There’s a faint chance that an error in the code you didn’t post is causing the problem. Post a complete SQL statement (as simple as [...]
It sounds like there is no “OrderID” field to count. With the current field list, an “Order” could be defined as Order Date combined with CustomerID, unless the same customer placed two Orders the same day. It would be possible to create Order:[OrderDate] & [CustomerID] as a calculated field in your report to group or [...]
From Ed Tittel (IT Certification Guy) Besides the TOGAF, for which you have indeed identified the correct study materials, there are other credentials you might want to consider Enterprise Architecture Certification: http://www.enterprise-architecture.info/EA_Certification.htm Sun Certified Enterprise Architect: http://www.sun.com/training/certification/java/scea.xml Certificate in Federal Enterprise Archtiecture: http://www.ce.csueastbay.edu/certificate/enterprise_architecture/index.shtml Microsoft Certified Architect Programs: http://www.microsoft.com/learning/mcp/architect/default.mspx See also Enterprise Architecture Links at http://www.bredemeyer.com/Architect/ArchitectCertification.htm [...]
No you don’t have to get an MCP or MCSE before attempting a Cisco certification like the CCNA. The CCNA does not touch on anything Microsoft related. It’s strictly network fundamentals and concepts with topics on configuring Cisco routers & switches. From Ed Tittel (IT Certification Guy): The preceding poster is absolutely correct in asserting [...]
Make two columns in your combo box. The first is the three letters and the second is what they stand for. The properties of the combo box should be: ColumnCount=2, BoundColumn=1, ColumnWidths=.5″;1.5″ (these withds may need to be adjusted to show all info in the drop down) If the row source type is “Value List”, [...]
Unfortunately, most PHP (and other) programmers won’t just drop a code in on request. The most you could hope for (realistically) is for someone to help you fix bugs in your code. What you are asking is if we will take time to write a script that we won’t ever get credit for. Most programmers [...]
The simple solution would be to create a field on the database, and name it something like user_lvl in mysql, it would be something like this: <pre>ALTER TABLE `table_name` ADD `user_lvl` INT( 3 ) NOT NULL ;</pre> that gives you a field that will allow you to give people with a level attached to their [...]
You don’t mention how you have tried to end the job. Have you used ENDJOB with OPTION(*IMMED)? If so, have you also tried ENDJOBABN (End Job Abnormal)? After the reorg of the physical file is finished, the RGZPFM command will rebuild all of the logical files attached to the physical file. Also, if you are [...]
Hi, Sorry, I don’t understand the question well enough to give you an anser. Can you give an example of what you want to do? For example, perhaps ten rows of data, including two or three computed columns (with the rules for computing those columns), and how the user might want to change the formulas [...]
In the business world, messaging is similar to the “public” Instant Messaging products from the likes of AOL, Yahoo!, Microsoft, the main differences are that the Enterprise-class systems called EIM, include two additional features: 1 – all messages are encrypted from within the sending EIM client software and decrypted within the receiving client software 2 [...]
A logical file does not contain data itself. It is only a view of the physical file it is built over. The physical file itself has the data or duplicate records. Kevin You do not have Key constraints on the PF or a LF on those columns.
You should be able to shutdown the Oracle database on the unix server and copy the files to the Windows XP server (probably via FTP) then attach the database to the Oracle database installed on your workstation. If you can’t shutdown the Oracle database then do a backup of the database and restore it on [...]
You might wish to visit the <a href=”http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems”>comparison of relational database management systems</a> at Wikipedia. There are tables showing comparative information for all the most popular relational databases. Here is an excerpt: “The following tables compare general and technical information for a number of relational database management systems. Please see the individual products’ articles for [...]





