I have a largish SQL table that I want to check for its existance and create it if it does not. The table has 2 VARCHARS, 1 TINYINT and 40 INT fields. The sql query string to create it is too long, gives me that 'Input Line Too Long' error.
Is there a compiler option to allow larger input strings? I could split the table into several smaller tables if absolutely necessary but thats not the elegant solution I am hoping for. ;)