This <a href=”http://3d2f.com/programs/0-334-vbolock-download.shtml”> site </a> has a program add in for VB that adds the functionality you are looking for. There are also links to related products at the bottom of the page. The FAQ on the authors home page located <a href=”http://www.moonlight-software.com/vbofaq.htm”> here </a> indicates it would be a good match for your purpose. [...]
Yes. Its called MQT on the iSeries. In most cases a full refresh is done using the SQL REFRESH command. However, it possible to insert, update, or delete from the MQT. You will have to write your own script for this.
Hi, I am not very sure about waht typw of files exists in the libraries you are reffering to. But if these are the system libraries which are small size binary files, then you can implement rsync between the two servers. All the changes will be copied to the DEV server. You can automate the [...]
You’ll need to drop the database, and restore the database again to get mirroring working. Drop all the logins as well before restoring the database. Go to MSKB <a href=”http://support.microsoft.com/kb/918992″>918992</a> and install sp_help_revlogin on the current system. Then run sp_help_revlogin. This will give you the SQL Scripts needed to create the logins using the same [...]
If I remember my Microsoft Access correctly you have to have a primary key on the table in the SQL Server database for Microsoft Access to be able to write to the table. Assuming your first column in the primary key the CREATE TABLE command would look something like this. <pre> CREATE TABLE [dbo].[tb1PmtD]( [PmtDLU] [...]
If the table structure between the two databases is different then you will need to map where each piece of data needs to go to. You can then use SSIS to move the data from the source database to the destination database. There isn’t much more help that can be provided via a forum. If [...]
There is a process explained here: <a href=”http://faculty.washington.edu/larsson/conf/aiha98/primer/excel-c.htm”>http://faculty.washington.edu/larsson/conf/aiha98/primer/excel-c.htm</a> that you might find helpful. It becomes relevant to your situation starting at step 2 Good Luck
To copy an iSeries database file to csv, use CPYTOIMPTF To start a job on the iSeries, you can use FTP and QUOTE sub-command.
Not knowing what database are you using, I can tell that Oracle has a limit on recursive calls in a trigger, and moreover, it does not let you modify objects that are “mutating”. From the documentation: “A mutating table is a table that is currently being modified by an UPDATE, DELETE, or INSERT statement, or [...]
I have found though my own experiences and those others have shared with me, that certifications are at least as valuable, IF NOT MORE SO, than degrees for getting IT related jobs. Bite the bullet and get the certification.
Depending on how many years of experience you have either a junior or mid level network admin, or telecommunication admin. ***************************************************** You might want to check into jobs with your local hospital. Leverage your telephone system experience. Hospitals usually have a huge telephone system, and then once in the door, you can pick up experience [...]
Shane, Pretty much no matter what getting in IT means starting in an entry level position. Degrees mean less in the IT world than they do in most other parts of business. In IT its all about having real world experience. Without the real world experience the degree is only good for getting passed the [...]
See this IT Jungle site for this information… http://www.itjungle.com/mpo/mpo120502-story01.html
Hello… All clauses of the OBJECT-COMPUTER paragraph apply to the program that explicitly or implicitly specifies them. They also apply to any program contained within that program. The MEMORY SIZE clause is for documentation only. It has no effect on program execution. The PROGRAM COLLATING SEQUENCE clause causes the program to use the collating sequence [...]
Hello, Client Access has a built in utility for Excel that brings the data transfer utility directly into Excel. If you are in Excel, click on Tools, Add-ins, then click on browse and go to C:Program FilesIBMClient AccessSharedcwbtfxla. select it. An option of iSeries data access will apear in your add ins. Check this option [...]
How to land these jobs? Well you are on the right path earning your certs. Given that you achieve that you will still be trying to enter a profession where job experience is highly valued. You will have no choice but to seek out entry level roles and employers who have such roles available. Given [...]
This page: <a href=”http://www.yevol.com/en/access2007/Lesson11.htm”>http://www.yevol.com/en/access2007/Lesson11.htm</a> has an explanation about halfway down the page (and it is a L-O-N-G page…) The page has other handy info on Access 2007 as well.
You might try this site: <a href=”http://www.code400.com/”>http://www.code400.com/</a> Particularly this page: <a href=”http://www.code400.com/qlgsort.php”>http://www.code400.com/qlgsort.php</a> Good Luck
Assuming that you use code similar to this: <pre>WITH EmployeeCTE AS ( SELECT EmployeeID, 1 AS Level FROM HumanResources.Employee WHERE ManagerID IS NULL UNION ALL SELECT E.EmployeeID, x.Level + 1 AS Level FROM HumanResources.Employee E JOIN EmployeeCTE x ON x.EmployeeID = E.ManagerID ) SELECT EmployeeID, Level FROM EmployeeCTE </pre> You can do an order by [...]
Sounds like someone has uninstalled the Oracle drivers from the SQL Server. Try reinstalling the Oracle drivers on the SQL Server.





