P
Peter Kaufman
Access 2003 ADP SQL Server 2000 SP4 backend.
ALTER PROC procTEST
AS
SET NOCOUNT ON
CREATE TABLE mylogintable
(
date_in datetime,
user_id int
)
GO
Any ideas why no error, but no table is created? Or alternately how to
troubleshoot the problem? It's sure to turn out to be something
stupid, but I can't pin it down.
I am definitely connected to the right server and looking for it in
the right db, and am an admin. If I run the proc twice, there is no
error that it already exists.
Thanks,
Peter
ALTER PROC procTEST
AS
SET NOCOUNT ON
CREATE TABLE mylogintable
(
date_in datetime,
user_id int
)
GO
Any ideas why no error, but no table is created? Or alternately how to
troubleshoot the problem? It's sure to turn out to be something
stupid, but I can't pin it down.
I am definitely connected to the right server and looking for it in
the right db, and am an admin. If I run the proc twice, there is no
error that it already exists.
Thanks,
Peter