Viewing 15 posts - 46 through 60 (of 113 total)
Thanks for your reply, Eugene. Forgot the brackets. =(
June 14, 2010 at 9:42 am
Sorry guys. I figured it out.
There is erroneous data value in the table. =(
February 11, 2010 at 4:13 pm
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!
February 11, 2010 at 3:58 pm
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...
February 11, 2010 at 2:56 pm
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?
February 11, 2010 at 11:29 am
I need the _recordId from Recordset Destination, is there a way that I can put these_recordId in a table, is that possible?
October 29, 2009 at 2:12 pm
No, thru from another data flow destination
October 29, 2009 at 1:56 pm
There is no trigger.
I figure out.
Thanks for replying.
October 28, 2009 at 11:44 am
The Microsoft Search is run by LocalSystem. Do I need to change it?
Ramesh (10/17/2007)
Full text search is a service named as Microsoft Search OR MSFTESQL...
You can go to services console...
October 17, 2007 at 9:03 am
I'm using SQL Server 2000,
Is there Surface Area Configuration tool in SQL2000?
Pam Brisjar (10/16/2007)
SQL Server FullText Search (MSSQLSERVER)
Right click, go to properties and check the Log...
October 16, 2007 at 10:20 pm
Under Services,
I don't see SQL Server FullText Search, I only see MSSQLSERVER and Microsoft Search
Pam Brisjar (10/16/2007)
SQL Server FullText Search (MSSQLSERVER)
Right click, go to properties and...
October 16, 2007 at 10:18 pm
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)
2) Again, check...
October 16, 2007 at 9:40 pm
Don't worry!
I figured it out!
Thanks anyways!
October 12, 2007 at 9:28 am
Viewing 15 posts - 46 through 60 (of 113 total)