Hi,
exec sp_readerrorlog on SQL 2000 looks like this:
ERRORLOG CONTINUATIONROW
2014-01-29 05:21:53.71 server SQL Server is starting at priority class 'normal'(2 CPUs detected). 0
2014-01-29 05:21:53.60 server Copyright (C) 1988-2002 Microsoft Corporation. 0
2014-01-29 05:21:53.60 server All rights reserved. 0
I need to split out the date part into a new table and convert to a datetime, so that the new table looks like this:
TIME TEXT CONTINUATIONROW
2014-01-29 05:21:53.71 SQL Server is starting at priority class 'normal'(2 CPUs detected). 0
2014-01-29 05:21:53.60 Copyright (C) 1988-2002 Microsoft Corporation. 0
2014-01-29 05:21:53.60 server All rights reserved. 0
Any idea how to do this?
Thanks,
Zoe