Viewing 6 posts - 1 through 6 (of 6 total)
If you dont want to use double hash global temp table then simply use single hash temp table instead.
Also about function let me write a quick template to do...
April 9, 2011 at 2:51 am
you're welcome.
also if you want to do it without cursor, try this simpler one
______________________________
CREATE TABLE [dbo].[tblMeeting](
[MeetingID] [int] IDENTITY(1,1) NOT NULL,
[MeetingName] [varchar](255) NOT NULL,
[ProjectID] [int] NOT NULL,
[dtMeetingDate] [smalldatetime] NULL
) ON [PRIMARY]
CREATE...
April 7, 2011 at 11:27 pm
sir - try my new post which is
--Below is complete solution which will compile and run and have logic to --create dynamic result table. Now all you need to do...
April 7, 2011 at 5:52 am
--Below is complete solution which will compile and run and have logic to --create dynamic result table. Now all you need to do is to write a function --that will...
April 7, 2011 at 4:45 am
CREATE TABLE [dbo].[tblMeeting](
[MeetingID] [int] IDENTITY(1,1) NOT NULL,
[MeetingName] [varchar](255) NOT NULL,
...
April 7, 2011 at 3:15 am
Viewing 6 posts - 1 through 6 (of 6 total)