Wednesday, December 10, 2008

Seagate Service Center in Bangalore

Below is the address of Seagate Service center in Bangalore.

ACCEL Frontline Ltd, No: 18/8,
Saleh Centre, Cunnigham Road,
Bangalore - 560052
Karnataka.
Ph: 080 66279903
You can reach them online @ http://myservice.accelfrontline.in/WRMS/

Wednesday, June 11, 2008

Common PERL Errors

PERL lib version doesn't match...
If you are getting this error while connecting to Oracle database in windows


Perl lib version (v5.8.3) doesn't match executable version (v5.8.8) at D:\oracle
\product\10.2.0\db_1\perl\5.8.3\lib/MSWin32-x86-multi-thread/Config.pm line 32.
Compilation failed in require at D:\oracle\product\10.2.0\db_1\perl\5.8.3\lib/MS
Win32-x86-multi-thread/DynaLoader.pm line 25.
BEGIN failed--compilation aborted at D:\oracle\product\10.2.0\db_1\perl\5.8.3\li
b/MSWin32-x86-multi-thread/DynaLoader.pm line 25.
Compilation failed in require at D:\oracle\product\10.2.0\db_1\perl\site\5.8.3\l
ib/MSWin32-x86-multi-thread/DBI.pm line 156.
BEGIN failed--compilation aborted at D:\oracle\product\10.2.0\db_1\perl\site\5.8
.3\lib/MSWin32-x86-multi-thread/DBI.pm line 156.
Compilation failed in require at db.pl line 4.
BEGIN failed--compilation aborted at db.pl line 4.


Try including "C:\perl\lib;C:\perl\site\lib;" in the starting of PERL5LIB/PERLLIB environment variable. Something like this "C:\perl\lib;C:\perl\site\lib;D:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;
D:\oracle\product\10.2.0\db_1\perl\5.8.3\lib;
D:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;
D:\oracle\product\10.2.0\db_1\perl\site\5.8.3;D:\oracle\product\10.2.0\db_1\perl\site\5.8.3\lib;
D:\oracle\product\10.2.0\db_1\sysman\admin\scripts;D:\OraHome_1\perl\lib\5.6.1\MSWin32-x86;
D:\OraHome_1\perl\lib\5.6.1;D:\OraHome_1\perl\5.6.1\lib\MSWin32-x86;D:\OraHome_1\perl\site\5.6.1;
D:\OraHome_1\perl\site\5.6.1\lib;D:\OraHome_1\sysman\admin\scripts"

Monday, June 9, 2008

About Perl......

Perl Facts

  • Perl is a stable, cross platform programming language.
  • It is used for mission critical projects in the public and private sectors.
  • Perl is Open Source software, licensed under its Artistic License, or the GNU General Public License (GPL).
  • Perl was created by Larry Wall.
  • Perl 1.0 was released to usenet's alt.comp.sources in 1987
  • PC Magazine named Perl a finalist for its 1998 Technical Excellence Award in the Development Tool category.
  • Perl is listed in the Oxford English Dictionary.

Supported Operating Systems

Perl Features

  • Perl takes the best features from other languages, such as C, awk, sed, sh, and BASIC, among others.
  • Perls database integration interface (DBI) supports third-party databases including Oracle, Sybase, Postgres, MySQL and others.
  • Perl works with HTML, XML, and other mark-up languages.
  • Perl supports Unicode.
  • Perl is Y2K compliant.
  • Perl supports both procedural and object-oriented programming.
  • Perl interfaces with external C/C++ libraries through XS or SWIG.
  • Perl is extensible. There are over 500 third party modules available from the Comprehensive Perl Archive Network (CPAN).
  • The Perl interpreter can be embedded into other systems.

Perl and the Web

  • Perl is the most popular web programming language due to its text manipulation capabilities and rapid development cycle.
  • Perl is widely known as " the duct-tape of the Internet".
  • Perl's CGI.pm module, part of Perl's standard distribution, makes handling HTML forms simple.
  • Perl can handle encrypted Web data, including e-commerce transactions.
  • Perl can be embedded into web servers to speed up processing by as much as 2000%.
  • mod_perl allows the Apache web server to embed a Perl interpreter.
  • Perl's DBI package makes web-database integration easy.