Forum Replies Created

Viewing 15 posts - 7,276 through 7,290 (of 7,608 total)

  • RE: Database Redesign

    Stefan Krzywicki (7/31/2012)


    ScottPletcher (7/31/2012)


    Stefan Krzywicki (7/31/2012)


    Scott, What does Erwin have that Visio doesn't that causes you to consider it a modeling tool while not considering Visio one?

    I admit I haven't...

  • RE: Database Redesign

    Stefan Krzywicki (7/31/2012)


    Scott, What does Erwin have that Visio doesn't that causes you to consider it a modeling tool while not considering Visio one?

    I admit I haven't used Visio that...

  • RE: Database Redesign

    Lucky9 (7/26/2012)


    redesign database based on the new business requirements ... steps need[ed] ... when redesigning a database.

    Spend some more time gathering, detailing and verifying your data requirements. Don't worry...

  • RE: Difficulty with a SELECT statement

    DataAnalyst110 (7/27/2012)


    Thanks very much to you both.

    Scott, I'm going to go with yours because I can better understand what it is doing. (By the way, I didn't need the SUM,...

  • RE: Feedback On Proposed Drive/RAID Configuration For New SQL 2008R2 System

    Tempdb drives are much too small. SQL uses tempdb a lot, and you can't afford to run out of tempdb space.

    I would not dismiss RAID5 for the db data...

  • RE: Feedback On Proposed Drive/RAID Configuration For New SQL 2008R2 System

    [Comment below; attempted to edit, instead it was re-posted with edits, so I removed the original comment.]

  • RE: Difficulty with a SELECT statement

    DataAnalyst110 (7/27/2012)

    ...

    UNLESS they have another Enroll.Credits that is greater than 15.

    Did you mean SUM(Credits) > 15 or a single course with Credits > 15?

    I suspected SUM but coded it each...

  • RE: trigger

    Sean Lange (7/25/2012)


    ScottPletcher (7/25/2012)


    I think the code below should at least be close to what you need (hopefully very close :-)):

    ALTER TRIGGER UPDate_PONumber

    ON dbo.PurchaseOrderDetail

    AFTER INSERT, UPDATE, DELETE

    AS

    UPDATE PON

    SET SubTotal =...

  • RE: trigger

    I think the code below should at least be close to what you need (hopefully very close :-)):

    ALTER TRIGGER UPDate_PONumber

    ON dbo.PurchaseOrderDetail

    AFTER INSERT, UPDATE, DELETE

    AS

    UPDATE PON

    SET SubTotal = PO_Total.SubTotal

    FROM dbo.PONumber AS...

  • RE: SQL 2008 R2 Enterprise on Windows Server 2008R2 Standard, max OS memory question

    sqlnyc (7/23/2012)

    What happens if the server has 48GB of memory? Does the OS just ignore it, or is there some way that SQL Server can access it?

    Excellent q ......

  • RE: Help with memory usage.

    tim.cloud (7/23/2012)


    I think your right about that. Not sure if 32GB is the right number, but maybe 34GB for SQL maximum memory which would give the MPA+OS+Other Processes 6GB...

  • RE: Filtered Index Not Begin used

    Djcarpen11 (7/23/2012)


    DECLARE @P INT

    SET @P= 1;

    select [ColA],[ColB],[ColC],[ColDfrom MyTable

    where cola =@p

    In cases where a filtered index is available, you can force SQL to recompile the statement, which should pick...

  • RE: Help with memory usage.

    I'd suggest reducing SQL to 32GB rather than 36GB. Remember that Windows needs some RAM to manage the other RAM. I think you're cutting it too close initially.

    First,...

  • RE: Calculated column Only for Insert

    Sony Francis @EY (7/20/2012)

    ...

    2. When the operation is update then modiifed date as getdate. WHen insertion happens modified date is null.

    ...

    Note :- Trigger is not applicable here

    If you don't use...

  • RE: Aggregate may not appear in the WHERE clause unless...

    rupes0610 (7/20/2012)


    Thank you, but I am now getting this error:

    Column 'dbo.IIRPS_HPOO_LPAR.OnlineMemory' is invalid in the HAVING clause because it is not contained in either an aggregate function or the GROUP...

Viewing 15 posts - 7,276 through 7,290 (of 7,608 total)