Skip to content
New issue

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

Where is the database (.mdf file ??) Am I missing something ? #1

Open
eric-derome opened this issue Sep 3, 2013 · 2 comments
Open

Comments

@eric-derome
Copy link

No description provided.

@mfugel
Copy link

mfugel commented Jun 7, 2014

i too am missing the mdf file?
can you help...your article looks like it is just what i need!! thanks

@deepak97kumar
Copy link

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

GO

SET QUOTED_IDENTIFIER ON

GO

SET ANSI_PADDING ON

GO

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]

GO

SET ANSI_PADDING OFF

GO

Regards

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants