# Local variables: dbo_cosSewerManholes = "Database Connections\\Han8Live.odc\\dbo.cosSewerManholes" Infor_gdb = "D:\\Temp\\Infor.gdb" # Process: Table to Table arcpy.TableToTable_conversion(dbo_cosSewerManholes, Infor_gdb, "manholes_view") print "done"
Solved! Go to Solution.
dbo_cosSewerManholes = "C:\\Users\\nhuggins\\AppData\Roaming\\ESRI\\Desktop10.1\\ArcCatalog\\Han8Live.odc\\dbo.cosSewerManholes"
I currently have a script that pulls information from a Microsoft SQL Server Table View and exports it to a file geodatabase using an .odc connection. This script will run fine in version 10.0, but will error out using version 10.1.
Curtis:
How can you tell if a python script is running in the foreground vs the background?
Curtis:
What if I am running the python script from a Windows Server 2008 Scheduled Task? I do not believe I have the option of running the script in the background, as by default, the script runs in the foreground. As such, I thought geoprocessing at v10.1 can be run in the 64 bit environment, but if I cannot force the script to run in the background it will still run in the 32 bit environment.
So even though I have access to a 64 bit environment, I cannot make use of this environment with a scheduled task because it can only run in the foreground.
Am I correct with this assessment?