Forum Replies Created

Viewing 15 posts - 39,871 through 39,885 (of 49,571 total)

  • RE: Finding previous/next record based on criteria without using a cursor

    mzak (4/9/2009)


    Is there any reason I should use one join over another?

    Use CROSS JOIN when you really do want a cartesian product. Use INNER JOIN when you want exact...

  • RE: Under what Login do TRIGGERS run?

    UB (4/9/2009)


    But the problem is .... the record gets inserted into Patient table and z_audit_Patient table.

    Yes, it will. As Gus said, it's due to ownership chaining.

    If that's not the...

  • RE: want to write a custom function

    Please don't post in all caps. It's the online equivalent of shouting.

  • RE: MCTS 70-431

    Kavin (4/9/2009)


    Anybody can guide me to move further..like what type of administration concepts they will ask and what type of simulation question will be there.

    Answering either of those questions will...

  • RE: Under what Login do TRIGGERS run?

    UB (4/9/2009)


    We have a Patient table, when users try to INSERT records into it a TRIGGER is fired that INSERTS a copy of the same record in an audit table...

  • RE: Incorrect data in teh 70-432 study guide.

    koustav_1982 (4/9/2009)


    hi can anyone please forward me the link for free download of these materials

    This site does not condone piracy or copyright violation. If you want to get the books,...

  • RE: Index - Float or Char ..... Varchar or Char

    If the column will be containing 15-30 character and leading 0's are important, then you should make it a varchar(30) column.

    Varchar has a 2 byte overhead for the storage of...

  • RE: Index - Float or Char ..... Varchar or Char

    jungnaja (4/7/2009)


    I have to create a new column and its index. This column can be any data type. The length of its value should be about 20-23. ...

  • RE: Indexes

    geramkumar (4/9/2009)


    * no need create index on tables having little records or columns having duplicates (like country, gender etc).

    Not necessarily. If the columns are filtered on often it may...

  • RE: Indexes

    suhasini.m (4/8/2009)


    When i am creating a new table how to identify whether i should create a Clustered or Nonclustered Index on this table? In terms of performance which one is...

  • RE: How to display number of rows in each table in database

    Ells (4/9/2009)


    Thanks,

    but got multiple rows for tables so changed it slightly:

    SELECT table_name,table_rows FROM (

    select so.name as table_name, si.rowcnt as table_rows,ROW_NUMBER() OVER (PARTITION BY SO.NAME ORDER BY si.rowcnt DESC) AS RC

    from...

  • RE: Verify my current backup strategy n suggest

    Where is that drive backed up to and how long are those backups kept for?

  • RE: Reference 'Deleted' table: Dynamic SQL

    rodney.williams (4/8/2009)


    OK, just verified by my manager that the 2000 database was auto installed from previous software that we have. It just has a SQL 2005 interface. Crap! From...

  • RE: Falling Over our Assumptions

    Robert Frasca (4/8/2009)


    The point I was trying to make is that the assumption that table variables are better than temp tables because they are stored in RAM is false.

    I...

  • RE: Reference 'Deleted' table: Dynamic SQL

    rodney.williams (4/8/2009)


    I got

    Microsoft SQL Server 2000 - 8.00.760 (Intel X86) Dec 17 2002 14:22:05 Copyright (c) 1988-2003 Microsoft Corporation Desktop Engine on Windows...

Viewing 15 posts - 39,871 through 39,885 (of 49,571 total)