Forum Replies Created

Viewing 15 posts - 196 through 210 (of 444 total)

  • RE: T SQL

    Typing error in the answer,:w00t:

    Row 1 - Vyas Mohan | Row 2 - Mohan Shobha, Shridhar | Row 3 - Mohan | Row 4 - Sourabh Mohan

    The correct answer...

  • RE: Composite key

    Considering the given facts, Column A will have to be the PK. The Column have to be Unique to qualify for PK.

  • RE: Maximum instances supported by SQL Server 2008

    There was no right choice to select so I selected the first option And GOT THE POINT...but the answer is wrong.

    Both editions support 50 instances Workgroup Edition supports 16...

  • RE: exporting null values in excel table

    Empty table should not be the problem. It should be related to the tables with data.

    In such case;

    Are you changing the default properties in 'Select Source Tables and Views'...

  • RE: What solution for 30 million users

    For systems like this, you have draw a visible line between OLTP and OLAP. You have to store Normalized data in one database and port it into OLAP database on...

  • RE: What solution for 30 million users

    I hope you are not trrying to connect all users on a single instance of SQL Server . Only 32767 Users can be connected concurrently on SQL Server 2005. Normally,...

  • RE: Recursive select Query

    I personally think the both solutions performs ons and the same thing... I dont see any difference.

  • RE: Recursive select Query

    Hey... I tried that. Doesn't work if F reports to B.

    To Who...?

  • RE: Case Statement Within TSQL

    To Jason:

    I need to filter the result so that I get all records that has both flags set to 1 and those records that have the isShipping = 0 and...

  • RE: Recursive select Query

    The solution I provided might help. But, as said by other posters, the data structure is required. I posted on my assumption that;

    B is descendent of A

    E and F are...

  • RE: How to compare two Scripts easily?

    SQL Delta is another option. It performs alot of other things.

  • RE: Case Statement Within TSQL

    Try this...

    with wcte as

    (Select *,(Select Count(*) from tmpAddress a where a.entityID = tmpAddress.entityID) rno

    from tmpAddress )

    SELECT ent.firstname + ' ' + ent.lastname AS "FullName",

    addr.addressline1,

    addr.addressline2,

    addr.city,

    stcd.statecode,

    addr.postalcode,

    addr.isMailing,addr.IsShipping...

  • RE: Error handling

    I think that error handling to be done on the scope of sp. I cannot understand the Primary scope or Secondary scope in your case.

    It would be better to...

  • RE: indian authors for sql server book

    I just give it a shot on the google but no results for Indian aurthor for SQL Server. BLOGS can be found by Indians ( and I guessed that by...

  • RE: Recursive select Query

    CTE will do the job. But need more information about inputs and outputs. For reference, I am assuming the following data structure.

    CREATE TABLE #DestinationDept

    (

    [DestinationDeptID] [int] IDENTITY(1,1) NOT NULL,

    [SNO] [int] NOT...

Viewing 15 posts - 196 through 210 (of 444 total)