Hi Team,
My Program is below
use DBI;
use DBD::Oracle;
use diagnostics;
use DBIx::Report::Excel;
my $ReportDate ='ABC';
my $SheetName='Test_'.$ReportDate.'.xls';
my $report = DBIx::Report::Excel->new($SheetName);
$sql2='select T.Name from TABLENAME T where T.Type = \'MASTER\' and e
+xists (select 1 from TABLENAME T2 where T2.Name = T.Name and T2.Name
+like \'Data%\')';
print $sql2;
$report->dbh(DBI->connect($odbc_dsn,$username,$password)) or die "Coul
+d not connect to DB with configuration provided";
print "Retrieving from Database is Starting\n";
$report->sql('
/* ---
title: Columns
--- */
'.$sql2);
$report->write();
$report->close();
--------------
Note : I have removed the information of Database details and other relavant details.
Above program works fine but the problem is I need to use not exists to get my desired data. If I change the code and make it not exists then this error comes
Bad table or column name: 'exists ^0^' has chars not alphanumeric or underscore!
I checked on google and several posts on couple of websites and found out that I need to remove non alphanumeric data from string and I added this in my code
$sql2 =~ s/[^a-zA-Z0-9 _,-='()]//g
But same error was still coming.
Can anyone please suggest what could be the real issue.
Also, I have removed several lines of code, so please ignore if some information is missing (like missing variables, declaration, connection info)
Please help me!!!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|