Posts by Lucas Stern • 43 points
3 posts
-
1
votes0
answers42
viewsQ: Different results 'Count(*) from V$ASM_DISK'
I have a script that connects on an Oracle basis and makes the following select: select count(*) from V$ASM_DISK; This script is in a . sql file, then I make the following call in the OS:…
-
1
votes1
answer167
viewsQ: "If(a == b):" or "if a==b:" in Python, which is correct?
I’ve seen two ways to express conditional in python, using or not (). With (): if(a): print('x') Without (): if a: print('x') Which of the two ways would be the most correct to use?…
pythonasked Lucas Stern 43 -
2
votes1
answer763
viewsQ: I need to leave the top of a table fixed, while the table has a scroll
I have a dynamic table, and I wanted head of it stayed fixed in hers while I give scroll in the table, when reaching the end of the table, the head "goes away" and so I go to the next table. All…