Advertisement
Advertisement
| 08.05.2008 at 12:35PM PDT, ID: 23623543 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: |
XML File:
<indicator id="IND_01">
<secnum>1</secnum>
<turn_on>N</turn_on>
<setup_db>OVERSIGHT</setup_db>
<setup_sql>UPDATE AP_VENDOR SET PAYMENT_TERMS = 'CHK' WHERE STATUS = 'ACTIVE'</setup_sql>
<setup_sql>UPDATE AP_VENDOR SET NAME1 = null WHERE VENDOR_ID = 'VENID-1'</setup_sql>
<setup_verify_sql>SELECT COUNT(*) FROM AP_VENDOR WHERE NAME1 is null</setup_verify_sql>
<setup_verify_count>1</setup_verify_count>
<ordinal>0</ordinal>
<conf>0.2</conf>
</indicator>
My Code:
#Get list of setup sql lines
ssql=`echo "IND_01" | grep "setup_sql" | sed "s/<[\/]*setup_sql>//g"`
for statement in $s_sql;
do
'execute database statement
done
|