Forum Replies Created

Viewing 15 posts - 11,926 through 11,940 (of 26,486 total)

  • RE: Max memory setting

    sunny.tjk (5/16/2012)


    Can I use the following script to change the max server memory from 24GB to 45GB?

    EXEC sp_configure 'Show Advanced Options', 1

    GO

    RECONFIGURE

    GO

    EXEC sp_configure

    Go

    EXEC sp_configure 'max server memory (MB)', 45000

    GO

    RECONFIGURE

    GO

    Probably, I'd...

  • RE: Order by clause

    Koen Verbeeck (5/16/2012)


    Lynn is right. You need to open the advanced editor of the source component and set the IsSorted property to TRUE. Then you have to indicate which columns...

  • RE: Order by clause

    Koen Verbeeck (5/16/2012)


    MisLead (5/16/2012)


    Lynn Pettis (5/15/2012)


    Are you trying to move the sorting of the result set from the server to the client? How big is the result set?

    Lynn,

    Actually I...

  • RE: Query runs quick until placed in SSRS

    Sounds like parameter sniffing. I don't have the links handy, so you will need to try searching this site with those keywords. Or, hopefully, someone with the links...

  • RE: Assistance For Script

    You actually need to use a left outer join and deal with a null value. It would help if you could post the CREATE TABLE statement, some sample data...

  • RE: Best method to store time

    I'd still use the TIME data type. If you do have hours that go from 20:00 to 05:00, I would deal with that in code. If all you...

  • RE: Please help me (Date Difference Issue)

    Here is my solution. Give it a test. Oh, with the values given by the OP, I get 12:03 not 12:07.

    DECLARE @StartDate DATETIME,

    ...

  • RE: Best method to store time

    megan_c99 (5/16/2012)


    Hi,

    I'm working on a project that requires us to store an employee's work schedule.

    For example our company allows the following work schedules:

    8:00 a.m. to 5:00 p.m.

    8:30 a.m....

  • RE: Update using subquery help!

    CELKO (5/16/2012)


    >> Once again, you and your high horse ride in. <<

    Gee, ANSI/ISO Standards, etc are "high horse" to you? Does that say a lot about your professionalism and expertise...

  • RE: Please help me (Date Difference Issue)

    Once you have the elpased time in minutes, the following will format it to HH:MM. This code assumes a positive elpased time. If the computation can go backwards,...

  • RE: Is Software Engineering Dead?

    TravisDBA (5/16/2012)


    Lynn Pettis (5/16/2012)


    TravisDBA (5/16/2012)


    Scrums are silly IMHO. People with health, foot or leg issues, or disabilites for that matter, should not be be told or forced to stand in...

  • RE: Is Software Engineering Dead?

    TravisDBA (5/16/2012)


    Scrums are silly IMHO. People with health, foot or leg issues, or disabilites for that matter, should not be be told or forced to stand in scrum meetings. That's...

  • RE: Must declare the scalar variable

    saidapurs (5/16/2012)


    Hi Brandie,

    I apriciate your responce & i agree with you but issue is i am not yet wrote any SP in my life. so while...

  • RE: Outer Join Help Needed

    james.jensen1350 (5/16/2012)


    Thanks for the reply Lynn. I tried that and id did not work.

    However, I did just now try a FULL OUTER join and moved the condition in the...

  • RE: Outer Join Help Needed

    james.jensen1350 (5/16/2012)


    I have two tables:

    t1 (dow smallint)

    t2 (custId int, dow smallint, data1 varchar(128), data2 float)

    I then insert 7 records into t1, one for each day of the week (1-7).

    Now, I...

Viewing 15 posts - 11,926 through 11,940 (of 26,486 total)