Activity overview
Latest activity by tranquilizer
Thank you for taking a look. But I am not sure if you understood the issue correctly.
I am not defining the default to be of string type value 'system_user'
I am defining the default to be of value returned by the sql server function system_user
and therefore the below definition -
[User_Created] [varchar](100) NOT NULL DEFAULT system_user / comments
Thank you for taking a look. But I am not sure if you understood the issue correctly.
I am not defining the default to be of string type value 'system_user'
I am defining the default to be of value...
Issue - system_user becomes system_user() which is incorrect
I have a table creation script within which there is a column with a default constraint defined with a value of system_user.
After doing a sql compare, the syncronization script changes the default...