alexjamesbrown
Programmer
Hi,
im currently scaling up an asp application from access to SQL Server...
one of the things i need to do is convert things like:
IsDate(CertSignSentDate)
to sql server compliant:
IsDate(CertSignSentDate) = 1
I need to run a regular expression search and replace on the IsDate([]) and make it so it replaces it with IsDate([]) = 1
obviously, the bracketed value must remain the same.
any ideas?
im currently scaling up an asp application from access to SQL Server...
one of the things i need to do is convert things like:
IsDate(CertSignSentDate)
to sql server compliant:
IsDate(CertSignSentDate) = 1
I need to run a regular expression search and replace on the IsDate([]) and make it so it replaces it with IsDate([]) = 1
obviously, the bracketed value must remain the same.
any ideas?