Forum Replies Created

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

  • RE: Truncate table

    Clustered indexes are stored within the referenced table and not in memory. Memory is volatile so if the indexes were stored there they would have to rebuilt every time...

  • RE: Truncate table

    Thank you my doubt is now clear!!!

  • RE: Truncate table

    @sean lange As per my knowledge when you create a non clustered index on a table column they occupy some space in memory as a hash tree...

  • RE: Truncate table

    tim_harkin (3/21/2013)


    If you are talking about the index definitions, then yes they are still there. Index data is gone - their pages are deallocated as well.

    I mean to say...

  • RE: even and odd records

    GilaMonster (3/2/2013)


    For SQL Server, this works as expected (as long as good performance isn't expected).

    CREATE TABLE student ( name VARCHAR(20), age INT );

    INSERT INTO student

    VALUES ( 'ram', 12...

  • RE: even and odd records

    The database engine is oracle!!! and I am trying to display odd number of records in table!

  • RE: even and odd records

    create table student

    (name varchar(20),age int);

    insert into student values('ram',12);

    insert into student values('shyam',13);

    insert into student values('balu',14);

    By processing the 2nd query the output I get is

    name age

    ram ...

  • RE: a tricky query

    Thank you for your explaination it cleared all the doubts!!!

  • RE: a tricky query

    If, in the second query, you had dropped the alias from the table in the inner query you would have gotten the same answer as in the first query

    Then...

  • RE: a tricky query

    @Lynn thank you for your answer it helped me but i have a doubt which is that why does not this happen in case when the alias is...

  • RE: a tricky query

    Thank you for your reply but can you please explain by giving a more elleborate explaination It would be very helpful!!

  • RE: assertions

    Editor: comment removed as it was offensive

  • RE: assertions

    Editor: Comment removed as offensive

  • RE: assertions

    No i said similar have a look you idiot!!!

  • RE: assertions

    I said similar not the same functions!!

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