Forum Replies Created

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

  • RE: Distinct Issue

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

  • RE: Get Month Name

    Thanks very much

  • RE: Get Month Name

    Thanks

    Thats good

    But is there is way so we can get month name using month number.

  • RE: Get Parameter Name

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

  • RE: Get Parameter Name

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

  • RE: Facng Problem In CASE

    Thanks you both

  • RE: What is the difference between Programmer and Good Programmer ?

    A good programmer can easily and correctly convert written instruction into code.

    Thanks :smooooth:

  • RE: Stored Procedure Problem

    I do not want to use that table again.

    I want to delete it!

    Thanks

  • RE: Stored Procedure Problem

    Thanks fro reply

    Why we are not deleting temp table??

  • RE: Stored Procedure Problem

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

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