Forum Replies Created

Viewing 15 posts - 3,676 through 3,690 (of 9,712 total)

  • RE: Are the posted questions getting worse?

    Lowell (4/16/2013)


    unlike all of you guys who completed all their tax paperwork in January and already got your refunds back, my yesterday was

    non stop juggling of funds so I could...

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (2/15/2013)


    Hey Brandie, speaking of your account problems, did you ever get the problem where you can't get DMs fixed?

    No. I thought I was about to, but I never...

  • RE: Update statement really slow but only on the first execution

    Lewis,

    My first thought (without testing) is that trigger might be causing some of your problem. If you have a sandbox / dev server, try disabling the trigger then running your...

  • RE: Update statement really slow but only on the first execution

    Lewis,

    There are several different issues here. The first is caching. SQL Server caches query execution plans for queries it doesn't remember or hasn't seen before, which always causes first-time-run queries...

  • RE: SSIS Task Question

    opc.three (3/28/2013)


    With only a single Precedence Constraint in place I am not aware of a configuration that would allow SSIS to execute a subsequent task without the previous task completing,...

  • RE: Search table field with LIKE clause

    Sean Lange (3/28/2013)


    kk1173 (3/28/2013)


    discharged_entered is a date field.

    Then forget all the convert nonsense. Just compare it to a datetime.

    c.discharge_entered_dt >= DATEADD(DAY, -14, getdate())

    Sean, This won't necessarily work for him. If...

  • RE: Search table field with LIKE clause

    kk1173 (3/28/2013)


    Both tables (employer and case1)have the necessary indexes.

    Something else to consider.

    Are you absolutely 100% positive that the indexes are 1) being used by the query engine and 2) properly...

  • RE: Search table field with LIKE clause

    First, try changing the JOIN to a more common version of the JOIN, which may (or may not) help.

    SELECT Distinct

    c.EMP_ID as ID,

    e.name as Display

    FROM Case1 c

    INNER JOIN Employer e

    ON...

  • RE: Monitoring Tools

    Most monitoring tools at my workplace is stuff we built ourselves. Part of that is due to budget / corporate approval constraints. Part of that is the need for things...

  • RE: I cannot import SSIS package into MSDB folder.

    Did you say you ARE or ARE NOT able to open the server in SSMS and import the package that way?

    Steps would be: Open SSMS, connect to Integration Services with...

  • RE: SSIS & Environment Variables

    Please be more detailed on where the error is coming from and what the error says.

    What type of configuration are you trying to create? (XML, Table, etc.) and where...

  • RE: Named Pipes Provider: Could not open a connection to SQL Server [53]

    AEdel (2/25/2013)


    We began getting the following error this morning, from a php script that's been running for months:

    [25-Feb-2013 01:10:17] PHP Warning: odbc_connect(): SQL error: [Microsoft][SQL Native Client]Named Pipes Provider:...

  • RE: Money Conversion Drops Digits

    Abu Dina (2/14/2013)


    Maybe this?

    SELECT ordertotal

    FROM #MoneyTest

    where ordertotal - round(ordertotal, 2) > 0

    Oh. You want me to use the SIMPLE solution. 😀

    <headdesk>

    Really? I had to make things THAT difficult for myself?

    Thanks,...

  • RE: Email Alert for VLF_count > 50?

    Why can't you just change your IF statement?

  • RE: Are the posted questions getting worse?

    Grant Fritchey (2/14/2013)


    Brandie Tarvin (2/14/2013)


    anthony.green (2/14/2013)


    Brandie Tarvin (2/14/2013)


    Does Ask SSC require a different user login than SSC? I'm logged in here, but it won't let me post an answer to...

Viewing 15 posts - 3,676 through 3,690 (of 9,712 total)