Here is the python create tablespace script, I need to use variable following LOCATION,
PGSQL_HOME = raw_input('Type the tablespace location path :>')
ctbsql = "CREATE TABLESPACE test OWNER tester LOCATION 'PGSQL_HOME/9.0/data/testspc';"
subprocess.Popen(['psql', '-U', 'postgres', '-c', ctbsql])
Of course, PGSQL_HOME
will treat as a string, and can't take the path value, are there some other methods that I can take to create tablespace in script?
I don't know whether I got you or not, if you want to get the input variable, you should uses it like this: