Forum Replies Created

Viewing 15 posts - 1,081 through 1,095 (of 2,452 total)

  • RE: How to calculate Time difference between 2 ranges and tally up each hour????

    what do you want to return when a meeting spans over an hour segment...say for example 9.30am to 10.30am

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: MS-Jet Engine 4.x ODBC enabled databases to 1 Terabyte/5 billion rows (or) SQL SERVER?

    MDB files are not split really. The data is segregated logically between MDB files so that the DB application user-interface knows exactly which MDB file to go for sequential or...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: MS-Jet Engine 4.x ODBC enabled databases to 1 Terabyte/5 billion rows (or) SQL SERVER?

    erichansen1836 (9/10/2015)


    If you implement a Network database file system of 500 MDB files, each acting as a partial table within the 5 billion row database, each MDB file containing 10...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Calculate total between two columns

    a starter for you to consider

    CREATE TABLE #NONAMETABLE(

    ID INT

    ,column1 INT

    );

    INSERT INTO #NONAMETABLE(ID,column1) VALUES

    (1,100.00)

    ,(2,60.00);

    SELECT column1, column1 -...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: convert rows to columns in query

    see how this works to start with

    SELECT Personelnumber, Name, LastName,

    max(case when Description = 'BaseSalary' then 'basesalary' end ) ,

    max(case when Description = 'BaseSalary' then amount end) ,

    max(case...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Commercial Software with All Tables as Heaps and Terrible Performance

    We struggle with things which I feel are fairly basic such as returning a list of 5,000 students with their highest Maths, English and Science results (the organisation in question...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Are the posted questions getting worse?

    Grant Fritchey (9/10/2015)


    Pretty sure this is just a troll. A JET powered troll. Making up your own terms... <sigh>

    is this the guy?

    http://www.linkedin.com/in/msjetdatabasedba

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: MS-Jet Engine 4.x ODBC enabled databases to 1 Terabyte/5 billion rows (or) SQL SERVER?

    for other readers....seems a similar discussion is also here

    https://social.msdn.microsoft.com/Forums/office/en-US/d768ffb9-08ad-4998-a71d-04b869c13ca8/ms-jet-red-database-engine-4x-capacity-testing-is-mssql-server-even-necessary?forum=accessdev

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Slow site

    Sean Lange (9/10/2015)


    robert.chipperfield (9/10/2015)


    Sorry to hear that - we've not seen a repeat of the same packet loss we were seeing since it was fixed, so it feels like it...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: charindex question

    deleted....poor explanation!

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Order of preference in a case statement

    try this....using Luis code.....all I have done is put in sample data based on what you told us.

    if this isnt right....please save yourself (and us trying to help you) ...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Order of preference in a case statement

    why dont you post some example data....would make it easier I am sure

    http://spaghettidba.com/2015/04/24/how-to-post-a-t-sql-question-on-a-public-forum/

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Are the posted questions getting worse?

    TomThomson (9/4/2015)


    Eirikur Eiriksson (9/3/2015)


    TomThomson (9/3/2015)


    Ed Wagner (9/3/2015)


    I would definitely attend your presentation on DBCC Timewarp. However, given the topic, expect some serious heckling. 😉

    Those who have never heard of...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: How to improve this query

    a test for comparisons on 1M rows

    see http://blog.waynesheffield.com/wayne/archive/2011/08/running-totals-in-denali-ctp3/

    SELECT TOP 1000000

    ID = IDENTITY(INT, 1, 1),

    Amount = CAST(Rand(Checksum(Newid())) * 99 + 1 AS BIGINT),

    Type ...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: How to improve this query

    another idea

    SELECT

    t.ID

    , SUM(t.AMOUNT) OVER(ORDER BY t.ID

    ROWS BETWEEN UNBOUNDED PRECEDING

    AND CURRENT ROW) - T.AMOUNT AS rsum

    FROM #temp AS t

    WHERE(t.TYPE =...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

Viewing 15 posts - 1,081 through 1,095 (of 2,452 total)