Hi,
I am getting alot of errors in the messages log, Unable to SCSI unload drive. Drives are constantly going down.
They are ndmp drives that are controlled by nas devices.
I am not sure what the problem is or where to look
Thanks
Mike
I have a string
$string = 'I_Love_Perl_So_Much';
I want to capture the 'Much' word, or the last match for
_.*?$
I am currently doing
$string =~ m/_(.*?)/;
but it finds _Love_Perl_So_Much
How can I get perl to search from the Left to the Right instead of Right to Left?
Thanks
Dagon,
I am not set on triggers or think its right! Thats what I am asking for advice. Hmm a Pl SQL script, I didnt think of that. That sounds like a good idea. The views just relie on each other and I have them set to refresh once a day. So I never did any PL SQL script, can you give me a...
Hello,
I am not sure if this is the correct way to do this or not, I am trying to have my views update one after another. With the basis being one view relies on another. Currently I have them setup to update at a certain time, but if one of the views take longer then expected things get...
Receiving error 800 when trying to backup to disk. I am just backing up a directory on a media server to another directory on the same media server. any ideas?
If I log onto a Solaris box, how do I tell the difference between local or san attached storage? I would like to know which filesystems are local and which are SAN. This way I can move some important directories to SAN. Thanks
Can someone write me a stored procedure that updates a materialized view? Reason is I am trying to use perl to update the view, via cron, and it gives me errors, so I am thinking maybe just running a stored procedure to update it.
Any ideas?
Anyone know how I can have perl update materialized views in Oracle? I know the command do it via SQL* Plus, but not sure how to do it via the DBI module.
I am currently connected and can run SQL against the DB and get results.
Any ideas? Want to execute.
execute...
...if i put a client name in, well some of them, some take to long to come back. I need it to be faster or it will never work
with temp1 as(
select * from table1 where client_name = 'Bob'
)
select * from
temp1 a, temp1 b
where b.s_date = (select max(s_date) from temp1 c
where c.CLIENT_NAME =...
select client_name, store_name, product_date, s_date
, b.s_date "return_date"
from
table1 a, table1 b
where b.s_date = (select min(start_date) return_date
from table1
where start_date > a.start_date)
Can I update the materalized view from an SQL worksheet?
I try execute DBMS_REFRESH.REFRESH('TEST');
But get ora-000900 error.
How can I do it threw the SQL worksheet?
All,
What can I use to connect to a Sybase server? I can't seem to find a module. I am using DBI for Oracle, and that works great. But for Sybase I have so many problems.
Any idea on what I need to install?
Thanks
Hi,
I have dates like this
11-APR-08
10-APR-08
09-APR-08
08-APR-08
07-APR-08
04-APR-08
03-APR-08
I want to be able to find out how many days are between, but I cannot count Sat and Sun.
So 4/7/08 - 4/4/08 = 0
So somehow I need to compare the first date to the date under it, then if a...
If I have 10 values I want to put in a temporary table, or somewhere where I can do an outer join real quick to see if they match, if they don't i want null.
So I have 10 values like
Peter
Bob
Christine
Mike
Jack
etc
Just want something like
Name
Peter
Bob
chistine
etc
This way I can out...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.