Viewing 8 posts - 1 through 8 (of 8 total)
John,
What about professionals that are changing their focus and don't have a lot or any experience.
Thanks
Brian
August 1, 2014 at 9:05 am
That did give me the same information with a lot less typing. Thank you.
May 23, 2013 at 11:02 am
My thanks to the two responders. Both suggestions look very helpful.
Brian
April 29, 2013 at 6:50 am
I was thinking of a child table for each of the three columns. Otherwise I'm not sure I understand your question.
March 7, 2013 at 5:42 pm
Thank you for your insight. My primary key is the ticket number. I will definitely look at changing some of the columns to or to not require nulls.
March 7, 2013 at 5:38 pm
The columns that I think should go into their own table are:
Priority - a number from 1 - 4
Assignee - User or group ticket is assigned to
Category - 1st level...
March 7, 2013 at 2:10 pm
here is the information you were asking for:
CREATE TABLE [dbo].[Tickets](
[Ticket Number] [int] NOT NULL,
[Priority] [smallint] NULL,
[Assignee] [varchar](25) NULL,
[Category] [varchar](25) NULL,
[Vendor Ticket] [varchar](60) NULL,
[Open Date] [date] NULL,
[Opener] [varchar](30) NULL,
[Closer] [varchar](30) NULL
)...
March 7, 2013 at 1:58 pm
did you ever resolve this issue? I'm experiencing the same issue.
Thanks
Brian
November 14, 2012 at 1:20 pm
Viewing 8 posts - 1 through 8 (of 8 total)