Forum Replies Created

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

  • RE: Report Manager - Blank

    Thanks Gaz

    I found a solutions. I tried as administrator option and administrator user name and password.

  • RE: Report Manager - Blank

    I opened IE as an administrator and tried but I got the same issue. 🙁

  • RE: CHECKSUM

    which version of SQL Server 2000 you are running ? SP4? later ?

    It's RTM version.

  • RE: CHECKSUM

    which version of SQL Server 2000 you are running ? SP4? later ?

    It's RTM version.

  • RE: CHECKSUM

    which version of SQL Server 2000 you are running ? SP4? later ?

    It's RTM version.

  • RE: Problem on OPENROWSET

    This code lists databases available in the local server, not remote server 10.0.172.53. ODS database is available in the remote server. So, ODS database does not listed in the above...

  • RE: Problem on OPENROWSET

    ODS

  • RE: Problem on OPENROWSET

    I get list of databases available in the local server. But I need to retrieve data from Remote server.

  • RE: Problem on OPENROWSET

    ODS database is not available in the local server. It is available in the remote server. I need get data from remote server.

  • RE: Problem on OPENROWSET

    Hi Chris Morris,

    Thanks for your reply. When I execute your code I get database available in the local server. Not the remote server(10.0.172.53).

  • RE: Query Request

    TRy and look up the Use of CTE's, this should point you in the right direction.

    Can I use CTE in SQL Server 2000?

  • RE: GOTO vs WHILE

    DECLARE @counter as int

    SET @counter = 0

    WHILE @counter < 10

    BEGIN

    --Your code here

    PRINT @counter

    SET @counter = @counter + 1

    END

  • RE: Converting Datetime to INT

    DECLARE @date AS DATETIME

    SET @date = '2007/01/01'

    SELECT CONVERT(VARCHAR,@date,112)

  • RE: How to calculate sum of row

    You may do this on triggers.

    CREATE TRIGGER insert_balance ON [dbo].[TEST]

    FOR INSERT

    AS

    UPDATE Test

    SET Balance = (inserted.Debit - inserted.Credit)

    + COALESCE((SELECT TOP 1 Balance FROM Test

    WHERE ID<(SELECT MAX([ID])

    FROM...

  • RE: COUNT problem

    Try this,

    SELECT COUNT(ACCOUNT) FROM

    (SELECT COUNT(DISTINCT ACCOUNT) AS ACCOUNT

    FROM dxhistory

    WHERE RANK=1

    GROUP BY ACCOUNT, RANK

    HAVING COUNT(RANK)>1)AS T

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