Viewing 3 posts - 1 through 3 (of 3 total)
CREATE TABLE [dbo].[EmployeeTest1](
[JobTitle] [varchar](50) NULL,
[BirthDate] [date] NULL,
[MaritalStatus] [char](1) NULL,
[Gender] [char](1) NULL,
[HireDate] [date] NULL
)
INSERT INTO [dbo].[EmployeeTest1] ([JobTitle] ,[BirthDate] ,[MaritalStatus] ,[Gender] ,[HireDate]) VALUES('Senior Tool Designer','1974-12-23','S','M','2007-12-05')
INSERT INTO [dbo].[EmployeeTest1] ([JobTitle] ,[BirthDate]...
April 15, 2019 at 1:10 am
This is the option I want to use for SSAS but I'm getting invalid username or password. This is what I have when I sign into SSMS. How do you...
October 28, 2018 at 2:07 pm
Viewing 3 posts - 1 through 3 (of 3 total)