make sure that you always specisy the schemaname while creating the objects, also make sure that you are on the right database while executing them
CREATE PROCEDURE dbo.email_input -------------- here
-- Add the parameters for the stored procedure here
@p_user_email varchar(25),
@p_entry_date datetime
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
INSERT INTO TOD_email (user_email, entry_date)
VALUES (@p_user_email, @p_entry_date)
END
go
exec dbo.email_input '[email protected]', '7/19/2010'