Hi ! You can use the exit point to validate users that are authorized to use ODBC. Sample program exist in the IBM information Center under this adress : http://publib.boulder.ibm.com/infocenter/iseries/v5r3/index.jsp?topic=/rzaik/rzaikodbcexitprog.htm As you will see, it is pretty easy to write variance into this example to fulfill your need’s. Dont forget to register your exit program [...]
Hi, One question I was asked was pretty lame…would I know what CAT5 cable is and how can I be sure it was correct? Also, I was asked “If the user reported a problem with their computer, would I asked them to check the cables before I made a trip to the desk/office to check [...]
You’ll need o setup and configure MS DTC on the workstations, as well as configure IBM’s Distributed Transaction Coordinator on the DB2 server.
You don’t need any specific tool to do a data mart compared to an OLTP database. Toad will work just fine. Many people including myself prefer to use Visio to do this. This gives you a second option.
Moving your database shouldn’t be all that hard. It sounds like you are planning on moving the application from the current server to a third server which makes it easier to do. 1. Install SQL 2000 on the new server. You will want to patch it to the same patch level that the current server [...]
You will want to reduce the amount of data that you need to transfer to the smallest amount of data possible. This way you are transferring the smallest amount of data possible. The easiest way to do this would be to query the remote system for the highest value that it has then transfer the [...]
Hello Bipansahoo, did you add all necessary files to the Package and Deployment Wizard? Normally if you are using OCX,DLL or any ohter additional files, I stringly suggest you providing the most updated version of these files. Anyway does the message say you which files are outdated? Bye
Hello, you can accomplish to this in two ways: 1) If the db is on a SQL server you can set this field to be <i>NoNull</i> so no null values are allowed. 2) You can do it via code by checking if the length of the field is major than 0 or not (e.g. <i>If [...]
Hello OldDog, this cannot be done on a memo field but only to test fields. You may consider using some VBA code to check the length before insert/update (E.g. <i>If Len(text) > 123 then….</i>) Bye
Hello Kemosabe everything depends on which report engine yuo are using; some engines have conditions/options that easily allow this. Please be more specific.
Hello, I guess you want to do this with some programming like VB, ASP or whatever, may you please specify which language? Bye
There are a lot of areas to consider in IT. There are a lot of other folks asking the same question on this board. Try using the search on this site for careers and learning new skills. Then, if you have additional questions, come back and ask those and we will be glad to assist. [...]
I have done this before with JOIN on multiple files with no problems. Just make sure the data structure you fetch into is defined to match the fields on your SELECT. All fields will be defined in the same data structure. This makes it kind of hard to just define the data structure externally to [...]
You can install ssl cert and arrange merchant accounts with your financial institute or setup paypal accounts which are very secure
The collation of a user database can be changed via the ALTER DATABASE command. <pre>alter database MyDatabase collate Latin1_General_BIN</pre> You can see the list of available collations <a href=”http://msdn.microsoft.com/en-us/library/ms180175.aspx”>here</a> or by running the following SQL Command. <pre>select * from sys.fn_helpcollations()</pre>
Try to make your skills as portable across operating systems and devices as possible. It’s the ideas that you should use to promote yourself. Be flexible and not afraid of change. Embrace it and let it lead you into the challenges and rewards of a brighter future.
It depends on the level of detail required and the audience for the policy. ISO will provide indepth administration and technical criteria related to a policy ….ie…provides details from start to finish on what is the purpose of the policy, scope, and tools used to monitor that the policy is in effect. COBIT will provide [...]
For database information <a href=”http://www.searchsqlserver.com”>searchsqlserver.com</a> is a good one. You can also check out the <a href=”http://itknowledgeexchange.techtarget.com/sql-server/”>SQL Server with mrDenny</a> blog You’ll need to learn about creating Web Methods in ASP.NET which will be how your app talks to the database. Here’s a nice little article on <a href=”http://msdn.microsoft.com/en-us/magazine/cc302021.aspx”>Web Methods</a>.
I was where you are in all this 5 years ago. I had a natural ability with computers but I needed more than that to start working professionally of course. The best way in my opinion is to start with a basic computer certification course, like an MCP in windows xp desktop, or if you [...]
Hello Keg, if I understood well your answer, your query shoule look like this: <pre> SELECT (SELECT SUM(COST) FROM MY TABLE WHERE [TASK TYPE]= ‘STEEL’) AS STEEL_COST FROM MY TABLE</pre> Regards.





