Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. wekoweko

    manipulate PDFs

    Hi Everyone, am a developer using Zope and wanted to know if any of you have ever implemented a pdf generating/creating system using python? This just means mostly manipulating pdfs (create and/or edit) via web. If you guys have any suggestions or recommendations please post, thanks.
  2. wekoweko

    need help with triggers

    hey there parbhani and santamufasa, thanks for the replies, yes you guys are right, i checked through toad and true enough there were 2 triggers acting on table1, one owned by sys and one owned by the schema i created, the other trigger had no where clause and so updated all rows of the table...
  3. wekoweko

    need help with triggers

    CREATE OR REPLACE TRIGGER trigger_name AFTER UPDATE OF column ON table1 FOR EACH ROW WHEN (NEW.column=some_value) BEGIN UPDATE table2 statement1 WHERE condition; UPDATE table2 statement2 WHERE condition; END trigger_name; hey guys need some help on this one, need a trigger to update a row on...
  4. wekoweko

    date field

    hey you guys thanks a lot for the suggestions, and santamufasa kamusta ka din? wer u from dude? thanks for the tip
  5. wekoweko

    Problem installation of Oracle 9i on windows2000 Pentium iv

    did the oracle universal installer start? where exactly did the installation quit? could be a service pack issue with windows; or a java vm issue on the comp; or maybe the cd or cd-reader has gone bad; process of elimination dude good luck
  6. wekoweko

    date field

    yeah unfortunately i do, you see it has like a view your transaction history on the client side, and obviously when a user views his history, there are a lot of off by one day errors
  7. wekoweko

    Need to set node to have "logon as batch job" privelages

    yeah came across this problem too you need to create a user in win2000 with the same name as the user you use logging in to oracle to create the job k, then assign logon as batch job in user rights, dont forget to also assign him in win2000 the dba group k, hope it helps
  8. wekoweko

    date field

    hi everyone, once again am here to ask for your help, am having a discrepancy in my data, am in manila but my oracle and web servers are in the usa, and whenever i try to insert data into a date field (which i had set to default sysdate), the date of course that goes into the field is about 12...
  9. wekoweko

    browser closing

    now that is a great idea, thanks a lot, just hope it wont be too much of an overhead on the system, thanks again dude
  10. wekoweko

    implementation of login tracking

    hey thanks dima and stefan for the suggestion, am a newbie with oracle, am still studying for the ocp certification, and am not very familiar with profiles so will have to review a bit, but do have a follow-up question though, this is an http session am talking about not an oracle session, am...
  11. wekoweko

    browser closing

    hey thanks, yeah as a backup, i also asked the oracle forum(because we're using oracle 91 obviously :) ) if theres a way to have a field automatically update itself after a certain amount of time, thanks again
  12. wekoweko

    browser closing

    that is not a bad idea at all thanks dude
  13. wekoweko

    browser closing

    hi there, wanted to ask if there is any method existent in html that would automatically detect if the user closes his browser? need to change his log status on a back-end database and if he closes the browser am worried that the status will never be updated to logged off? any of you know any...
  14. wekoweko

    implementation of login tracking

    hi there, am using oracle 9i and would like to ask this question, am planning to implement the prevention of multiple and simultaneous logins to a site using a single account via different computers, am planning to use a back-end table that has a members unique id and a status of 1 if he is...
  15. wekoweko

    http session

    hey jeff thanks sedj already told me that am mos probably gonna have to implement this via a back-end database and i think that is the best answer thanks
  16. wekoweko

    http session

    thanks dude, well actually that will just allow me to see if the current users login session is still valid, what i actually want to see is if the user is already logged on somewhere else and wants to create another login session, anyway i think you are right, backend validation is probably the...
  17. wekoweko

    http session

    hi there, just wanted to know if any of you out there know of any way to make sure no multiple and simultaneous logons for a single user to a site using only session, i know this can be done via a back-end table but would like to implement the functionality using session objects only, thanks
  18. wekoweko

    http session

    hi, wanted to ask if any of you out there has come across a way to check for multiple and simultaneous logins by a single user to a site using only session objects, i know this would be fairly easy to do using a back-end table but would like to implement the functionality using session, thanks

Part and Inventory Search

Back
Top