The tool works well in the MODEL bilder, but when it wants to convert it to the python script error occurs. All data from the column disappear.
import arcgisscripting
gp = arcgisscripting.create(9.3)
gp.workspace = "D:\\DATA.gdb\\"
TABLE = "D:\\DATA.gdb\\TABLE"
FIELD = "texx"
gp.CalculateField_management("TABLE", "FIELD", "StrConv([texx],vbUpperCase)", "VB")
What am I doing wrong??