Forum Replies Created

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

  • RE: Error Microsoft Management Console

    Thanks for the response!

    I have found the solution.

    When the message appears you have to go to

    C:\Documents and Settings\ \Application Data\Microsoft\MMC

    In the MMC folder, there is a file named...

  • RE: Problem using Top for Cursor

    CREATE                          PROCEDURE [InsertID]

    @CityID varchar(2),

    @Top int

    AS select CityID from table_Employees where cityid=@CityID

    declare @RegionID as varchar(5)

    set @RegionID = (select isnull(max(EmpID),0) from table_Employees where cityid=@CityID

    if cast(@RegionID as int)=0

    set @RegionID =...

  • RE: Problem using Top for Cursor

    Thanks for the kind replies and help!

    * I had no idea about ROWCOUNT. What it's suppose to do?

    After the cursor I use to "update the RegionID against the EmpID fetched...

  • RE: Problem using Top for Cursor

    Yes, EmpID is unique.

    What is alternate for " cursor "?

  • RE: Multiple Repeated Insertions

    Thank you dear

     

  • RE: SQL SERVER DB ATTACH ERROR

    Thanx for the reply,

    Isn't there any tool to recover the corrupted SQL Server files?

    Please do reply,

  • RE: Union Flaw

    I am really sorry, I just missed what I had to mention...

    All the basic views include selective data and union is used to combine the three Views in 1 (That...

  • RE: Union Flaw

    You can say:

    /////////////////////////////////////

    For Basic View1: select 1,2,3 from tbl_Main where category=1

    For Basic View2: select 1,2,3 from tbl_Main where category=2

    For Basic View3: select 1,2,3 from tbl_Main where category=3

    For Main:

    select 1,2,3 from...

  • RE: Query??

    Thanx for all of your kind replies, I am really happy to get the solution.

    Thank you very much.

  • RE: Converting Row to Column?

    Thanx for the Suggestion Frank!

    I 'll formalize my Database Design.

    Regards

    JAN

  • RE: Converting Row to Column?

    Thanx to all of U for the great support.

    I have tried union but not working for many columns.

    The idea of inserting the ID, Orders in a new table [#better] is...

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