Forum Replies Created

Viewing 15 posts - 166 through 180 (of 455 total)

  • RE: Update with Select...

    Now do a select on SELECT * FROM PRODDTA.F0911 WHERE PRODDTA.F0911.[GLREG#] =0

    and see how many records are returned

    Prasad Bhogadi
    www.inforaise.com

  • RE: Pulling data from different servers

    Add the servers from which you need to fetch the data as linked server using sp_addlinkedserver

    Please refer to BOL and prefix the server name before servername.master.. in your stored...

    Prasad Bhogadi
    www.inforaise.com

  • RE: Reporting Services 2005 Question

    Do you want to Navigate to another page or another report? Another report is pretty much possible.

     

    Prasad Bhogadi
    www.inforaise.com

  • RE: How to resolve Server Application Unavailable error

    Glad you finally got it to work.

    Thanks

     

    Prasad Bhogadi
    www.inforaise.com

  • RE: How to resolve Server Application Unavailable error

    Obviously from your error code it seems like you authentication is failing on the password.

    Are you using Integrated Windows Authentication on your Reports Folder?

    Also check by doing the following

    From Run...

    Prasad Bhogadi
    www.inforaise.com

  • RE: How to resolve Server Application Unavailable error

    Run eventvwr.msc and check if you are finding any errors on that with respect to your Reporting Server.

     

    Prasad Bhogadi
    www.inforaise.com

  • RE: where one field is NULL

    SELECT

    ID.MNAME, sd.*

    FROM

    dbo.Import_FULL sd INNER JOIN...

    Prasad Bhogadi
    www.inforaise.com

  • RE: Yet another US dates problem...

    Try using CDATE function for formatting the Date Parameter using the expression while passing to the subreport.

     

    Prasad Bhogadi
    www.inforaise.com

  • RE: where one field is NULL

    Ok, can you post one of your queries, so that I can what exactly can be done. You can use CASE in your where clause like

    WHERE

     CASE WHEN ISNULL(b.surname,'') =''

    THEN

       a.Surname

    ELSE

    b.surname...

    Prasad Bhogadi
    www.inforaise.com

  • RE: How to resolve Server Application Unavailable error

    Check if your SQL Server Reporting Service is running on the services.msc. Check if you have the required Virtual Directories for your ReportServer and ReportManager on the IIS and that...

    Prasad Bhogadi
    www.inforaise.com

  • RE: where one field is NULL

    Also make sure you do not use WHERE condition. Use AND condition if you are checking more than one condition after the OUTER JOIN. If you are including any condition...

    Prasad Bhogadi
    www.inforaise.com

  • RE: where one field is NULL

    Use a outer join

    something like

    from table a

    left outer join table b ON a.surname = b.surname

    in this case irrespective of whethere there is a matching record for a record of table...

    Prasad Bhogadi
    www.inforaise.com

  • RE: SQL to T-SQL conversion explained

    It would look something like this

    SELECT

    DISTINCT Orders.OrderID,

    Orders.CustomerID,...

    Prasad Bhogadi
    www.inforaise.com

  • RE: Transaction inside a cursor?

    Give this a try

    Declare @AppBaseID Int

    Declare @AppID Int

    Declare @AppEEOID Int

    Declare @RBID Int

    Declare @AppToReqID Int

    Declare @ss VarChar(15) --Social Security Number.

    Declare @ErrorNum Int

    SET  NoCount ON

    SET  Xact_Abort OFF

    SET  @ss = 0

     WHILE  @ss Is...

    Prasad Bhogadi
    www.inforaise.com

  • RE: Transaction inside a cursor?

    I see the problem use this syntax...

    IF @ErrorNum <>0

    GO TO ErrHandler

    at the bottom, just write a COMMIT TRANSACTION

    On the ErrHandler :

    ROLLBACK TRANSACTION

     

    Prasad Bhogadi
    www.inforaise.com

Viewing 15 posts - 166 through 180 (of 455 total)