Get answers.  Share knowledge.  Collaborate with peers.




I found old E00000 log files
Hi, It is advised to keep these files.E0000 are basically transaction log files that helps to recover the to the point where failure occurs. You can check the log files at the location: %ALLUSERSPROFILE%Application DataRed GateLogs Admin Console and Outlook Add-in log files can be found at : %USERPROFILE%Local SettingsApplication DataRed GateLogs

View Answer   |  February 14, 2013  4:04 PM
Log files, Microsoft Exchange
answered by:
11,410 pts.

Mail.box corruption
update/Replace the  mailbox  template to a new template.

View Answer   |  February 14, 2013  1:18 PM
LotusScript, LotusScript error messages
answered by:
15 pts.

Outlook calendar appointments
Hi, To setup an Appointment in Outlook 2010, first open the Calendar and select New Appointment. From there you get options to set Subject, Location, Time and Description fields. To know more about Appointment in Outlook 2010 check the links: http://www.howtogeek.com/howto/33857/quick-tip-setup-and-cancel-appointments-in-outlook-2010/ http://www.clarion.edu/244102/

View Answer   |  February 14, 2013  6:20 AM
Microsoft Outlook, Microsoft Outlook Calendar
answered by:
11,410 pts.

Domino Migrating form One OS to another Os
Hi, First you need to create a new Domino server then, migrate all data from previous to new one. Check if these links can help you: http://www-01.ibm.com/support/docview.wss?uid=swg21092419 http://www-01.ibm.com/support/docview.wss?uid=swg21102494

View Answer   |  February 14, 2013  6:09 AM
Lotus Domino
answered by:
310 pts.

Using CL to COPY text files to QNTC share
I try this command to send a sequential file 133 characters long to the windows share: CPY OBJ(‘/qsys.lib/rlklib.lib/flnames.file/flnames.mbr’)     TODIR(‘/qntc/carnyit2/as400$/IVR_Updt’)                  TOCCSID(*CALC)               The error message is CPFA0AD  Function not supported by file system.                

View Answer   |  February 13, 2013  7:30 PM
AS400 Command, CL Commands, QNTC File System
answered by:
105 pts.

Motherboard
you can install “driverfinder” to your PC and you can find the suitable driver and download it & install it……(need internet connection) 

View Answer   |  February 13, 2013  6:11 PM
Developement, Motherboards
answered by:
5 pts.

Windows 7 with Server 2003 domain
It sound like you have problem with DHCP release/renew IP address to client. Before you join the domain find out what is your IP address, Gateway, DNS, DHCP. Try to ping the DNS server and Domain Controller. Is your Domain Controller host DHCP?

View Answer   |  February 13, 2013  4:32 AM
Windows 7, Windows Server 2003
answered by:
5 pts.

Program is expecting a file not used in this call
In your CL program where you do the OVRDBF before your CALL, add DLTOVR commands after the call.

View Answer   |  February 13, 2013  3:45 PM
CL Program, CPF4101, RPG Program
answered by:
11,410 pts.

Uploading PTF file from local PC to AS/400
You can use FTP. Be sure to use BINARY when you do your PUT  

View Answer   |  February 13, 2013  4:21 PM
AS/400, iSeries Navigator, PTF
answered by:
11,410 pts.

Remove Trailing & Leading Spaces in COBOL/400
V5R4M0 or higher use Function TRIML, TRIMR or even TRIM. MOVE FUNCTION TRIM(STREET-ADDRESS,” “) TO STREET-ADDRESS-OUT. Prior to V5R4 you will have to use the basic INSPECT statement. 

View Answer   |  February 13, 2013  1:59 PM
AS/400, COBOL 400
answered by:
340 pts.

Using IIF statement in query to return answer
The code that you have below is what I need but I don’t need a parameter to pop up. When I put in that code or my code, and hit run I’m prompted to enter a parameter. I need it to pull info from the academic column and waiver column if both are yes then [...]

View Answer   |  February 13, 2013  9:23 PM
Microsoft Access 2010, Microsoft Access fields
answered by:
150 pts.

Closed Gmail account
in settings–accounts and import–other google account settings–account management

View Answer   |  February 13, 2013  11:29 AM
Email account, Gmail
answered by:
5 pts.

DVD / CD
Yes, all you need is the software and just reload it.  If you do not have the cd, go to the Dell site, type in your laptop serial number and it will give you all the drivers for your system. Blank_Reg: Presuming that you are using Windows, you could try removing it in the device [...]

View Answer   |  February 13, 2013  3:49 AM
Dell, Dell desktop
answered by:
5,475 pts.

Maintaining my license
Hello, and welcome to ITKE. Almost any of the Cisco exams that start with the number 642- will re-certify your CCNP. If you look on the Cisco certification tracker it will list all of these, which include some of the wireless exams, as well as many others. With only just over a month to go, [...]

View Answer   |  February 13, 2013  8:31 PM
CCNP, Certifications
answered by:
5 pts.

Recursive SQL error
It is hard to see exactly what you are doing. Looks like a RUNSQLSTM If so, can you just paste the source code. BTW, if it is RUNSQLSTM and all you are doing is a SELECT, then that is the problem. With RUNSQLSTM, you can Update, Delete, Insertt, Create, everything except a simple SELECT.

View Answer   |  February 12, 2013  8:27 PM
SQL error messages, SQL statements
answered by:
11,410 pts.

How big of a risk is BYOD?
It’s as big of a risk as your organization (management) is willing to let it be. The reality is whether or not you tell people that they can use their own mobile devices on the network, for corporate email, information storage, etc., they’re going to find a way to do it anyway. Why not set [...]

View Answer   |  February 12, 2013  2:10 PM
BYOD, Security, smartphone
answered by:
11,410 pts.

What non IBM programs are actually run.
DSPOBJD OBJ(&Lib/*ALL) OBJTYPE(*ALL) OUTPUT(*OUTFILE) OUTFILE(QGPL/ALLOBJECTS) On the AS400, you need to look at last used date on the objects. you can create and file of all objects in a library by using the DSPOBJD command. Here is a sample. You can query this file, or send it out as a .csv so you cna use [...]

View Answer   |  February 12, 2013  11:17 AM
AS/400, IBM programs
answered by:
5,475 pts.

Remove blank space and dash
You need to write a routine that will loop through each character in the input field and output to a new field. You can use %SUBST IF %SUBST(yourfield : ipos : 1) <> ‘ ‘ AND     %SUBST(yourfield : pos : 1) <> ‘-’     %Subst(newfield : opos : 1) = %SUBST(yourfield : ipos : [...]

View Answer   |  February 12, 2013  4:59 PM
AS/400, RPGLE, RPGLE code
answered by:
5 pts.

Stored procedures
A stored procedure is a set of SQL statements that can be shared by multiple programs. You can find more of an explanation here: ”Stored procedure“

View Answer   |  February 12, 2013  6:33 AM
SQL statement, Stored Procedures
answered by:
2,060 pts.

What’s your top IT priority for 2013?
Looking at it from my perspective as a security consultant, I think this is an appropriate ranking. Data is the ultimate component of any given environment that needs to be secured. The only issue I see is that many organizations still don’t know what data is where. Nor do they fully understand how it’s currently [...]

View Answer   |  February 12, 2013  8:30 PM
Data protection, IT, Server virtualization
answered by:
11,410 pts.