Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)

  • RE: Local variable in Grant statemant

    Hi,

    I have this solution but mainly I want to know whatz the reason????

    Why it below block of code gives error.

    Declare @user varchar(200)

    set @user = 'mymachine\vishal'

    GRANT  EXECUTE  ON mytest_sp TO @user

    GO

  • RE: How to Export DTS Package?

    Hi,

    Thankz mike for you reply.... Please send me utility.... It will really help me....

    Please send me at vishu_prajapati@yahoo.co.in

    Thanking

  • RE: Store Provedure Calling Store Procedure

    Hi,

    Thankz for your reply.

    Global #table will not work as it in Client-Sever Architecture and at time there are 4-5 users logged in accessing may be same SP.

    Please help

  • RE: Store Provedure Calling Store Procedure

    Hi,

    Please help on it......

    Are you finding it difficult to get the solution or you not getting what I want......

     

  • RE: varchar size overflow

    Hi,

    Thankz for your reply. It really added some idea in reaching to a solution. But still actual problem is not addressed.

    Let me explain you with example:

    At fornt end I have...

  • RE: varchar size overflow

    Hi,

    Thankz for your reply. Same we have also thought of but where to create the # table.

    If in SP I have to create then any how the problem remains...

  • RE: Data Size issue

    Hi,

    ALL PC in a company are of NTFS file system.....

    Please help..... We are not able troubleshoot.....

     

  • RE: Operation is not allowed when Object is Closed

    Hi,

    I have set this at Infinite ( connection timeout = 0)

    And that too at both end. At Sql Server also and in ADO connection also. BUT 🙁

  • RE: Operation is not allowed when Object is Closed

    HI,

    Sorry to bother you....

    But it does not take any parameter. I just call the SP and it gives me the result for 12 months. The same SP when I...

  • RE: Operation is not allowed when Object is Closed

    Hi,

    Thanks for reply.....

    I told in my original post that it works locally very fine. Also when the SP is run through the Query Analyser of client server, there also...

  • RE: Operation is not allowed when Object is Closed

    Hi,

    Thanks for you reply.....

    But this does not help out as we are making use of client side cursor only......

    Please help

  • RE: Operation is not allowed when Object is Closed

    Hi,

    Here is the SP ........

    ALTER PROC getaverage

    AS

    SET ANSI_WARNINGS OFF

    SET NOCOUNT ON

     CREATE TABLE #tblAverage (

      [ID] int,

      [Month]  varchar(100),

      [Value]  varchar(20))  

     DECLARE @NoofMonth int

     SET  @NoofMonth = 0

    WHILE @NoofMonth < 12

    BEGIN 

     

    INSERT INTO #tblAverage SELECT...

  • RE: Cumulative Count

    Hi,

    Thankz dear. Your help really worked out. I have never tried CROSS JOIN this way.

  • RE: Error should not be return....

    Hi,

    Vishal again...

    Thankz to all for your reply.

    But the solution which you have given is specific to the arithmetic error. I want to have the general solution. If any type...

  • RE: Must Declare Variable error....

    HI,

    THANKZ A LOT to all of you. I got the solution. It really helped me out. I was not knowing about sp_executesql SP as I was new to Sql Server....

Viewing 15 posts - 1 through 15 (of 18 total)