Method: OraUtils::TitleParser#parse_asm_sid
- Defined in:
- lib/orabase/utils/title_parser.rb
#parse_asm_sid ⇒ Object
12 13 14 15 |
# File 'lib/orabase/utils/title_parser.rb', line 12 def parse_asm_sid # Chopping of @ end using length of 16 because max length of SID is 16 lambda { |sid_name| sid_name.nil? ? default_asm_sid : sid_name[1..17]} end |