Development Questions


Solution for ORA-6413 error showing connection not open
Are you running a 32 bit Oracle client software on a 64 bit OS ? It seems that this error is caused by a bug. The networking layer is unable to parse program locations that contain parenthesis in the path to the executable which is attempting to connect to Oracle, and 32 bit applications are [...]

View Answer   |  November 5, 2011  6:58 PM
ORA-6413, Oracle 10g, Oracle connectivity, Oracle error messages, VB.NET, Visual Basic .NET
answered by:
15 pts.

help me on use input data JAVA
lets keep the code in the try block if the input is any space u keep it in that and catch in catch block or in finally block u keep the loop.It might solve ur problem

View Answer   |  November 5, 2011  4:27 PM
Java, Java developers, Java programming
answered by:
660 pts.

Can’t access data in hard drive, using Windows
Use any data recovery tool to retrieve data. Also if u have partmagic then u may use it to overcome this problems. ================= Obviously, your computer system failed to function, you really need to determine if there is really a problem with the hardware part of the hard drive by testing it to another computer [...]

View Answer   |  November 4, 2011  10:00 AM
Data access, Hard drive space, Hard drives, Software Development Life Cycle, Windows Operating System
answered by:
2,130 pts.

Windows 7 / Windows XP compatibility issues
As you have noted, you will probably need to create an EXE file for XP and one for 7. You could have a virtual machine with XP to use it when compiling applications for XP clients. –I’m new to VB6, where do I instruct VB to build for XP?———- ============ Your files created by your [...]

View Answer   |  November 2, 2011  8:53 AM
VB 6.0 Image Capture, Visual Basic 6.0, Windows 7, Windows XP
answered by:
2,130 pts.

Unknown Threats
Aside from honey pots, there are also honey nets (google on honey nets or on the name Lance Spitzner who is very much involved. He’s got some good books out on the subject. Microsoft (and maybe other groups as well) has what is called a “Honey Monkey” project. Similar in objective to a honey pot, [...]

View Answer   |  November 2, 2011  8:40 AM
Application security, backdoors, configuration, Current threats, Database, Encryption, Exchange, Firewalls, Forensics, Hacking, human factors, Incident response, Instant Messaging, Intrusion management, Network security, Networking, patching, PEN testing, Platform Security, Secure Coding, Security, Software, Spyware, Tech support, Trojans, Viruses, VPN, vulnerability management, Wireless, worms
answered by:
2,130 pts.

Slow boot-up in win xp home edition
First make sure your computer is ‘clean’. Run a good updated anti-virus scan. then go to one of the free online virus scanners for a second aopinion. I use http://housecall.trendmicro.com Then make sure you’re clean of spyware. I recommend ‘Spybot Search & Destroy’ and ‘AdAware’. You can get them both at download.com Once you machine [...]

View Answer   |  November 2, 2011  8:34 AM
Administration, Application software, Clarify Inc., Data analysis, Data center operations, Database Management Systems, DataCenter, Desktop management applications, Desktops, Disaster Recovery, ERP, FAT and NTFS, Graphical User Interfaces, Hardware, Help Desk, Information risk management, Installation, IT architecture, Microsoft Windows, Network management software, Networking, Operating system platforms, Power management, Registry, Servers, Service and support, Services, Software, Storage, System utilities, Tech support, Third-party services, Vendor support, Vulnerability Assessment & Audit, Windows, Windows 2000 desktop, Windows 95/98, Windows client administration and maintenance, Windows XP
answered by:
2,130 pts.

Cannot get Event Viewer to work or start on Windows Server 2008
What troubleshooting steps have you tried? Has the machine been renamed ever? Recently?

View Answer   |  November 2, 2011  1:07 AM
Error 4201, Event Viewer, Services, Windows Event Log, WMI Data Provider
answered by:
64,550 pts.

Free antivirus and spyware to pinpoint virus source
Free antivirus software are not as effective compared to those with full license. If you really want a total security for your client or server computer, it is still better to install an antivirus software with full license to use all its features and latest virus database.

View Answer   |  October 30, 2011  8:08 AM
Antivirus, Antivirus software, Open source, Open source software, Security in 2010, Spyware, Virus detection
answered by:
2,130 pts.

How to combine 2 rows to multiple columns?
Rightly or wrongly, my immediate approach is to create a VBA macro. <pre> Sub shifter() Range(“a1″).End(xlDown).Select For arow = ActiveCell.Row To 2 Step -1 If Cells(arow, 1).Value = Cells(arow – 1, 1).Value Then Cells(arow – 1, 4).Value = Cells(arow, 2).Value Cells(arow – 1, 5).Value = Cells(arow, 3).Value Cells(arow, 1).EntireRow.Delete End If Next End Sub </pre> [...]

View Answer   |  October 29, 2011  6:23 AM
SQL Query
answered by:
750 pts.

How to parse xml values
If all the messages are similar, then I would write a function that looks for the pattern: … table ” — the word table, then a space, then a quote character Then extract the following text up to the next quote character as the table name and repeat for the column name. <pre>declare @i int; [...]

View Answer   |  October 28, 2011  4:36 PM
.NET development, XML development, XML Parsing
answered by:
3,830 pts.

pl/sql fixed file creation
My PL/SQL is a bit rusty, but … To generate a field of a fixed length, the easiest way is to first PAD the field on the right with blanks, then take the LEFT side of that padded string in the length you want. For example to get a field of exactly length 50, you [...]

View Answer   |  October 28, 2011  4:28 PM
PL/SQL, SQL
answered by:
3,830 pts.

Why C/C++ over Java?
From a security stand point, Java is a language that hackers can infiltrate more easily than C++ because of the way Java performs on our systems. And that is just one, anyone else???

View Answer   |  October 28, 2011  12:05 PM
C, C++, Java
answered by:
1,420 pts.

How to create automatic reply to all received mails in mail-in database
<b>Firstly there is a Warning </b>- If you reply to an email that will auto reply back you can get into a MAIL loops. Simple Agent http://technicaltroubleshooting.blogspot.com/2011/06/lotus-notes-auto-reply-for-resigned.html Out of Office Agent If you use the built in Out of Office agent to do this then it is safer. Scripted agent http://www-01.ibm.com/support/docview.wss?uid=swg21376915

View Answer   |  October 26, 2011  1:37 PM
Agents, Lotus Notes 6, Lotus Notes 6.5, Lotus Notes 6.x
answered by:
10,650 pts.

Question on Database Development Options
1. Just about any web based programming will work. Options include but are not limited to PHP, ASP.NET, Classic ASP, Perl, Java. 2. Yes apps which are written in those languages can be hosted on Windows and Linux web servers. 3. Probably 4. Things like GnuCash would be integrated via the web app not via [...]

View Answer   |  October 25, 2011  4:55 AM
Database, MySQL, SQL
answered by:
64,550 pts.

Reversing a String in RPG
Here’s one way to do it: <pre>D w@String S 150 Varying D w@StringRev S 150 Varying D X S 3P 0 D Y S 3P 0 D Z S 3P 0 /Free w@String = ‘Now is the time’; Clear Z; Y = %Len(w@String); %Len(w@StringRev) = Y; For X = Y DownTo 1; Z += 1; [...]

View Answer   |  May 14, 2013  1:24 PM
AS400 Data Definitions, RPG string operations, RPGLE Program, String manipulation
answered by:
1,410 pts.

VB Script to Create a Scheduled Task on a Remote Machine Using Alternate Credentials
Hi, Nice to see the script. good share. Thanks Anil <a href=”http://www.lepide.com/”>LEPIDE</a>

View Answer   |  October 21, 2011  7:00 AM
IT Scripts, MS Windows, Scheduled Tasks, VB script, WMI
answered by:
1,125 pts.

RPG/400 array
1. What do you mean by “array types”? What is an “array type”? 2. The DDS manual contains all keywords along with descriptions. Keywords that begin with “SFL” are specifically for subfiles, but other display file keywords may also be used. See <a href=”http://publib.boulder.ibm.com/infocenter/iseries/v7r1m0/index.jsp?topic=%2Frzakc%2Frzakcmstkeyent.htm”>DDS keyword entries for display files</a> for one reference. The <a href=”http://publib.boulder.ibm.com/infocenter/iseries/v6r1m0/topic/rzakc/sc415715.pdf”>Application [...]

View Answer   |  October 19, 2011  6:28 AM
Arrays, RPG/400, SFL
answered by:
110,215 pts.

Free IT Book: Demystifying the Virtual Desktop
http://itknowledgeexchange.techtarget.com/itanswers/extend-hdd/#viewquestion http://itknowledgeexchange.techtarget.com/itanswers/extend-hdd/ hope to win

View Answer   |  October 18, 2011  4:36 PM
AS/400, Business Intelligence, Channel, CIO, CRM, Database, DataCenter, Development, Exchange, Giveaways, IT Books, Linux, Lotus Domino, Microsoft Windows, Mobile, Networking, Oracle, SAP, Security, SQL Server, Storage, Virtualization, VoIP, Windows Server
answered by:
3,080 pts.

Limitations of running Windows Server 2008 core
Hi, One of the major limitations is that no trace of Internet Explorer is available. You can read the article related to it’s limitations: http://geekswithblogs.net/lorint/archive/2007/10/30/116462.aspx It worthy reading. Thank you Anil <a href=”http://www.lepide.com”>LEPIDE</a>

View Answer   |  October 18, 2011  12:53 PM
Interface design, Windows Server 2008, Windows Server 2008 Administration, Windows Server 2008 Standard
answered by:
1,125 pts.

Free SQL software with interface to enter data
You could use <a href=”http://www.openoffice.org/”>OpenOffice’s</a> Base. Base is similar to Access, but is free. Here’s a guide in case you decide to use it: <a href=”http://wiki.services.openoffice.org/w/images/3/3c/0108GS33-GettingStartedWithBase.pdf”>Getting Started with Base (OpenOffice.org’s Database Component)</a> (PDF)

View Answer   |  October 17, 2011  4:17 PM
Data entry, Free software, Freeware, SQL, SQL Query
answered by:
63,580 pts.