Forum Replies Created

Viewing 15 posts - 46 through 60 (of 113 total)

  • RE: Select in CASE statement

    Thanks for your reply, Eugene. Forgot the brackets. =(

  • RE: Convert Varchar to datetime

    Sorry guys. I figured it out.

    There is erroneous data value in the table. =(

  • RE: Convert Varchar to datetime

    Msg 241, Level 16, State 1, Line 1

    Syntax error converting datetime from character string.

    It didn't make sense as if I do:

    SELECT convert(datetime,'2004-08-24',120)

    2004-08-24 00:00:00.000

    It works!

  • RE: Convert Varchar to datetime

    I was able to change the data to

    08-24-2004

    08-25-2004

    08-26-2004

    select CONVERT(datetime, F3, 103) from _CalendarDate

    Msg 242, Level 16, State 3, Line 1

    The conversion of a char data type to a datetime data...

  • RE: Convert Varchar to datetime

    CREATE TABLE [dbo].[_CalendarDate](

    [F1] [varchar](20) NULL

    ) ON [PRIMARY]

    select * from dbo._CalendarDate

    8242004

    8252004

    8262004

    select CONVERT(datetime, F1, 103) from _CalendarDate

    Syntax error converting datetime from character string.

    I want to convert it to datetime, any idea?

  • RE: concatenate

    I end up created a function instead.

  • RE: Can you put Recordset Destination in the table?

    I need the _recordId from Recordset Destination, is there a way that I can put these_recordId in a table, is that possible?

  • RE: Insert not commiting?

    It's to do with the code. =)

  • RE: Can you put Recordset Destination in the table?

    No, thru from another data flow destination

  • RE: Insert not commiting?

    There is no trigger.

    I figure out.

    Thanks for replying.

  • RE: full-text catalogs

    The Microsoft Search is run by LocalSystem. Do I need to change it?

    Ramesh (10/17/2007)


    Noel,

    Full text search is a service named as Microsoft Search OR MSFTESQL...

    You can go to services console...

  • RE: FULL-TEXT catalogs

    I'm using SQL Server 2000,

    Is there Surface Area Configuration tool in SQL2000?

    Pam Brisjar (10/16/2007)


    It's a Windows service account:

    SQL Server FullText Search (MSSQLSERVER)

    Right click, go to properties and check the Log...

  • RE: FULL-TEXT catalogs

    Under Services,

    I don't see SQL Server FullText Search, I only see MSSQLSERVER and Microsoft Search

    Pam Brisjar (10/16/2007)


    It's a Windows service account:

    SQL Server FullText Search (MSSQLSERVER)

    Right click, go to properties and...

  • RE: FULL-TEXT catalogs

    Thanks for your reply, Pam.

    Can you guide me where can I find the full text agent id?

    Thanks again

    Pam Brisjar (10/16/2007)


    1) Nope. It's the new security settings.

    2) Again, check...

  • RE: Distribution Agents Failed

    Don't worry!

    I figured it out!

    Thanks anyways!

Viewing 15 posts - 46 through 60 (of 113 total)