Sponsored Content
Full Discussion: Unix in the banking world
Top Forums UNIX for Dummies Questions & Answers Unix in the banking world Post 302306370 by kartikkumar84@g on Sunday 12th of April 2009 01:20:44 PM
Old 04-12-2009
Unix in the banking world

Hi

I have recently joined a bank as a tester. Initially I will be working on some test scripts and then I will be testing their data warehouse using SQL and Unix. I do have a very basic knowledge and understanding of both unix and sql. I am not sure how I will be using Unix to test their servers.

I would really appreciate if you could provide any resources or links on how Unix can be used in the financial world for testing. Any help would be really appreciated thanks.

Also, could you direct me to where I can get a FREE shell account to practice my scripts. Thanks.


K
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

new to unix world

Need a lot of help, need to find information on unix and how to use it, Has anybody ues the learnkey videos on unix teaching. (5 Replies)
Discussion started by: winter
5 Replies

2. UNIX for Dummies Questions & Answers

Click here for the best unix in the world!!!!

To anyone who asks which Unix is the best... or which one I should use... Probably the best timeline I have ever seen. Read this link... http://www.levenez.com/unix/history.html#08 (0 Replies)
Discussion started by: Kelam_Magnus
0 Replies

3. UNIX for Dummies Questions & Answers

new user to the next generation of the new WORLD UNIX

am a windows Prof .... i deside to go with the UNIX .... but how can i start ......plz help me ........ (1 Reply)
Discussion started by: ekarak
1 Replies

4. What is on Your Mind?

The Language of the Unix World should Change

We should put an end to saying "orphan", "kill child", "zombie". Anyone, We should change the awful metaphors used in the language of managing Unix processes. I believe that this still humbly local initiative hides a great importance of how the world of Unix looks and feels to every user. ... (18 Replies)
Discussion started by: tonank
18 Replies

5. Shell Programming and Scripting

Need help on unix scripting. I am at hello world level. Your help would be greatly appreciated.

Need to automate the following steps (OS--> AIX ) 1. cd /advx/R8.1MR2/TOP/logs ( I navigate to this directory) 2. Monitor the current date ULOG for specific error pattern => ls -lrt ULOG.08* -rw-rw-rw- 1 vssrt vssgrp 24370 Aug 01 23:57 ULOG.080112 -rw-rw-rw- 1 vssrt vssgrp ... (6 Replies)
Discussion started by: krchakr
6 Replies

6. What is on Your Mind?

Mad World Remix of Moby Video (Are You Lost In The World Like Me)

This is an excellent video comment on modern society and the remix is good too: https://www.youtube.com/watch?v=5DU1B_XkyIk 5DU1B_XkyIk Watch the video above and post your comments. (3 Replies)
Discussion started by: Neo
3 Replies

7. What is on Your Mind?

UNIX: Building The Most Important OS in the World By John Loeffler

Nice UNIX history article by John Loeffler, February, 05th 2019 UNIX: Building The Most Important OS in the World The most widely used operating system in the world was a project born out of failure. (0 Replies)
Discussion started by: Neo
0 Replies

8. What is on Your Mind?

UNIX.com Hello World HUD YT Video

UNIX.com Hello World HUD YT Video https://youtu.be/cs3dbPnzDV4 Check it out! Subscribe, Like, Share, Comment . Cyber Dystopia (Ep. 2) - The Myth of the Singularity Coming Soon! (3 Replies)
Discussion started by: Neo
3 Replies
SQL::Abstract::Test(3)					User Contributed Perl Documentation				    SQL::Abstract::Test(3)

NAME
SQL::Abstract::Test - Helper function for testing SQL::Abstract SYNOPSIS
use SQL::Abstract; use Test::More; use SQL::Abstract::Test import => [qw/ is_same_sql_bind is_same_sql is_same_bind eq_sql_bind eq_sql eq_bind /]; my ($sql, @bind) = SQL::Abstract->new->select(%args); is_same_sql_bind($given_sql, @given_bind, $expected_sql, @expected_bind, $test_msg); is_same_sql($given_sql, $expected_sql, $test_msg); is_same_bind(@given_bind, @expected_bind, $test_msg); my $is_same = eq_sql_bind($given_sql, @given_bind, $expected_sql, @expected_bind); my $sql_same = eq_sql($given_sql, $expected_sql); my $bind_same = eq_bind(@given_bind, @expected_bind); DESCRIPTION
This module is only intended for authors of tests on SQL::Abstract and related modules; it exports functions for comparing two SQL statements and their bound values. The SQL comparison is performed on abstract syntax, ignoring differences in spaces or in levels of parentheses. Therefore the tests will pass as long as the semantics is preserved, even if the surface syntax has changed. Disclaimer : the semantic equivalence handling is pretty limited. A lot of effort goes into distinguishing significant from non- significant parenthesis, including AND/OR operator associativity. Currently this module does not support commutativity and more intelligent transformations like Morgan laws, etc. For a good overview of what this test framework is capable of refer to "t/10test.t" FUNCTIONS
is_same_sql_bind is_same_sql_bind($given_sql, @given_bind, $expected_sql, @expected_bind, $test_msg); Compares given and expected pairs of "($sql, @bind)", and calls "ok" in Test::Builder on the result, with $test_msg as message. If the test fails, a detailed diagnostic is printed. For clients which use Test::More, this is the one of the three functions ("is_same_sql_bind", "is_same_sql", "is_same_bind") that needs to be imported. is_same_sql is_same_sql($given_sql, $expected_sql, $test_msg); Compares given and expected SQL statements, and calls "ok" in Test::Builder on the result, with $test_msg as message. If the test fails, a detailed diagnostic is printed. For clients which use Test::More, this is the one of the three functions ("is_same_sql_bind", "is_same_sql", "is_same_bind") that needs to be imported. is_same_bind is_same_bind(@given_bind, @expected_bind, $test_msg); Compares given and expected bind values, and calls "ok" in Test::Builder on the result, with $test_msg as message. If the test fails, a detailed diagnostic is printed. For clients which use Test::More, this is the one of the three functions ("is_same_sql_bind", "is_same_sql", "is_same_bind") that needs to be imported. eq_sql_bind my $is_same = eq_sql_bind($given_sql, @given_bind, $expected_sql, @expected_bind); Compares given and expected pairs of "($sql, @bind)". Similar to "is_same_sql_bind", but it just returns a boolean value and does not print diagnostics or talk to Test::Builder. eq_sql my $is_same = eq_sql($given_sql, $expected_sql); Compares the abstract syntax of two SQL statements. Similar to "is_same_sql", but it just returns a boolean value and does not print diagnostics or talk to Test::Builder. If the result is false, the global variable "$sql_differ" will contain the SQL portion where a difference was encountered; this is useful for printing diagnostics. eq_bind my $is_same = eq_sql(@given_bind, @expected_bind); Compares two lists of bind values, taking into account the fact that some of the values may be arrayrefs (see "bindtype" in SQL::Abstract). Similar to "is_same_bind", but it just returns a boolean value and does not print diagnostics or talk to Test::Builder. GLOBAL VARIABLES
$case_sensitive If true, SQL comparisons will be case-sensitive. Default is false; $parenthesis_significant If true, SQL comparison will preserve and report difference in nested parenthesis. Useful while testing "IN (( x ))" vs "IN ( x )". Defaults to false; $sql_differ When "eq_sql" returns false, the global variable $sql_differ contains the SQL portion where a difference was encountered. SEE ALSO
SQL::Abstract, Test::More, Test::Builder. AUTHORS
Laurent Dami, <laurent.dami AT etat geneve ch> Norbert Buchmuller <norbi@nix.hu> Peter Rabbitson <ribasushi@cpan.org> COPYRIGHT AND LICENSE
Copyright 2008 by Laurent Dami. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.2 2012-06-14 SQL::Abstract::Test(3)
All times are GMT -4. The time now is 05:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy