We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
i too am missing the mdf file? can you help...your article looks like it is just what i need!! thanks
Sorry, something went wrong.
Please run the following script in sql server 2012.
Create database [Company] Go
USE [Company]
GO
/****** Object: Table [dbo].[EmployeeInfo] Script Date: 11/25/2012 10:10:09 PM ******/
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
SET ANSI_PADDING ON
CREATE TABLE [dbo].[EmployeeInfo](
[EmpNo] [int] IDENTITY(1,1) NOT NULL,
[EmpName] varchar NOT NULL,
[Salary] [decimal](18, 0) NOT NULL,
[DeptName] varchar NOT NULL,
[Designation] varchar NOT NULL,
CONSTRAINT [PK_EmployeeInfo] PRIMARY KEY CLUSTERED
(
[EmpNo] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
SET ANSI_PADDING OFF
Regards
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: