hi, guys
I have a stored procedure, like that:
CREATE PROCEDURE [dbo].[ViewTitles]
@UID int,
@DateStart datetime,
@DateEnd datetime,
........
When I run this query in SQL Analyzer like this:
ViewTitles 6165, '2006-01-29 10:00:00', '2006-02-29 10:00:00'
It alwasy shows:
Error converting data type varchar to datetime.
If I run it in code, asp.net, or report, no problem at all.
What is wrong with that
Thanks.

how to run this proc in SQL Analyzer?
AmandaJO