Viewing 10 posts - 1 through 10 (of 10 total)
I also attach Create SQL Of Both table
CREATE TABLE [dbo].[L24Invitations](
[L24InvitationsID] [int] IDENTITY(1,1) NOT NULL,
[senderId] [int] NOT NULL,
[senderEmail] [nvarchar](50) NOT NULL,
[recipientEmail] [nvarchar](50) NOT NULL,
[invitationDate] [smalldatetime] NOT NULL,
[success] [bit] NOT NULL,
[invitationType] [varchar](100)...
May 12, 2012 at 6:24 am
Thanks
Thats good
But is there is way so we can get month name using month number.
February 8, 2008 at 1:45 am
Thanks , I got another way so I am posting it here.
I got the solution
sp_help or sp_helptext
the first one will give the signature of the stored proc, the second...
December 14, 2007 at 9:32 pm
ALTER PROCEDURE [dbo].[Award_Category_Insert]
-- VARIABLE DECALARTION--
@Award_Category_Name as nvarchar(100)
AS
BEGIN
SET NOCOUNT ON
-- AWARD CATEGORY WILL BE INSERT--
Insert into Award_Category_Master(Award_Category_Name, Is_Deleted ) Values (@Award_Category_Name,0)
END
Suppose we have about SP name is Award_Category_Insert and it...
December 14, 2007 at 10:10 am
A good programmer can easily and correctly convert written instruction into code.
Thanks :smooooth:
November 27, 2007 at 5:01 am
I do not want to use that table again.
I want to delete it!
Thanks
November 27, 2007 at 2:06 am
Thanks fro reply
Why we are not deleting temp table??
November 27, 2007 at 12:05 am
Thanks for the reply, nut I think you not get the question.
Here is the example
Post_Detail Table
Post_ID Post_Title
1 Basic Problem
[Post_Reply] Table
[Post_Reply_ID] [Post_ID],[Reply_Title]
11...
November 26, 2007 at 11:18 pm
Viewing 10 posts - 1 through 10 (of 10 total)