Viewing 2 posts - 76 through 77 (of 77 total)
Here is my stored procedure:
CREATE PROCEDURE dbo.GET_USER_DETAIL (@lan_id varchar)
AS
SELECT * FROM APP_USER WHERE [LAN_ID]=@lan_id
GO
When I exec the stored proc, nothing gets returned, but when I run the select statement on...
February 23, 2006 at 10:24 am
#623007
I already have SQL Server 2000 installed, and this is what I am limited to. I just need to know how to create the local db and users, assign permissions...
February 10, 2006 at 11:25 am
#620243