Viewing 5 posts - 1 through 6 (of 6 total)
This was very helpful . Thank you very much.
November 13, 2012 at 8:24 am
Hi,
hope this is better! Please could you help me by suggesting corrections?
CREATE PROCEDURE [dbo].[usp_UsersRegistration]
@ID ...
November 13, 2012 at 5:08 am
I can't because my PC does not have free space at the hard disk. I tried and PC could not perform anything. Unfortunatelly I have the teacher who does not...
November 9, 2012 at 11:29 pm
🙂 thanks a lot. my problem is that I can't test the code so I am just trying to find the solution asking people who know
November 9, 2012 at 3:30 pm
USE [Users]
GO
CREATE TABLE [dbo].[Users](
[Username] [nvarchar](50) NULL,
[Password] [varbinary](50) NULL,
[ID] [int] IDENTITY(1,1) NOT NULL,
CONSTRAINT [PK_Users] PRIMARY KEY CLUSTERED
(
...
November 9, 2012 at 2:55 pm
Viewing 5 posts - 1 through 6 (of 6 total)