Sophia, This forum is specifically for ArcObjects but your question is related to Python and ArcPy, you want to be posting such questions in this section of the forum and not here. Having said that your error is due to a simple syntax mistake. You wrote: arcpy.CreateFileGDB_Management(root_directory, terminal_db) what you should have written is: arcpy.CreateFileGDB_ m anagement(root_directory, terminal_db) So this error can be fixed by changing exactly 1 character! Duncan
... View more