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 strongm 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. bandisr

    Rewards Scheme

    you can always derive the number of points from the field used to store the no of events. select user, events/5 as 'reward points' from user_event_table; hope this helps, Sreekanth Reddy Bandi, Persistent Systems Pvt. Ltd., (http://www.persistent.co.in)
  2. bandisr

    Is there Stacks in Perl?

    Hi, You can use built-in functions push and pop on arrays to get the behaviour of a stack. The following code may help you my @stack; #its an array #push some elements push @stack,1; push @stack,2; #get the length of the stack $len=$#stack+1; #pop the elements for ($i=0;$i<$len;$i++) {...
  3. bandisr

    change structure of a table

    hi, look alter table syntax. you can add/delete or modify column definition. hth, sreekanth Sreekanth Reddy Bandi, Persistent Systems Pvt. Ltd., (http://www.persistent.co.in)
  4. bandisr

    Perl adequacy for textfile converting

    It looks like, you need to convert one xml(gml/pc) doc into another xml doc. You can use XSLT to do the same. Sreekanth Reddy Bandi, Persistent Systems Pvt. Ltd., (http://www.persistent.co.in)

Part and Inventory Search

Back
Top