Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • Reply To: get 1st row per group

    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]...

    • This reply was modified 5 years, 7 months ago by  mtl20144102.
  • RE: impersonation for specific username and password

    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...

  • RE: table type

    Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)