Forum Replies Created

Viewing 15 posts - 781 through 795 (of 6,486 total)

  • RE: How to handle "big data" or "large data" with SSIS ?

    300mb of data should load in no time flat, but you seem to be going at it the hard way.

    If the input file is to simply be inserted into a...

  • RE: Beginner, Expert, or Both?

    Jeff Moden (10/8/2013)


    Matt Miller (#4) (10/8/2013)


    While I don't necessarily disagree with the discussion - it's important to remember that complex is often a point of view. Jeff , what...

  • RE: Beginner, Expert, or Both?

    Jeff Moden (10/8/2013)


    logitestus (10/8/2013)


    I run into this type of problem everywhere I have worked. Someone states "this is the way to do it" because they saw X% faster performance....

  • RE: How to automate the running of a script task, so that it runs hourly?

    You're looking to use SQL Agent as the scheduler. Just use the following article to decide which way you want to schedule the job:

    http://technet.microsoft.com/en-us/library/ms141701.aspx

  • RE: use results of view in where statement

    Sean's syntax would allow you to check to see if the view returns anything. If you're looking to find out if specific columns are not null, you'd have to...

  • RE: Always Abstract

    RonKyle (8/21/2013)


    As a VB Programmer, I developed a lot of processes using disconnected recordsets. I used stored procedures to retrieve the initial sets. However, the additions and changes...

  • RE: Can we call stored Procedure inside a function

    GilaMonster (6/12/2013)


    Ed Wagner (6/12/2013)


    Just because we can do something doesn't mean we should. The technical workaround does work, but I don't think it's a good idea.

    It's not a good...

  • RE: Cursor Logic causing Blocking ?

    LutzM (6/11/2013)


    my guess would be the WHILE loop *cough* being the reason for locking.

    Depending on the value of @recipientcount it might take a while to perform all those single row...

  • RE: Are the posted questions getting worse?

    Kingston Dhasian (6/6/2013)


    dwain.c (6/5/2013)


    Stefan Krzywicki (6/5/2013)


    Don't you hate it when you finally figure out a solution for a difficult problem and it creates 5 more problems that the old way...

  • RE: What is Functional DBA?

    Michael Valentine Jones (5/29/2013)


    Are there Non-Functional DBAs?

    Is Business analysis speak, a non-functional DBA would mostly be concerned with performance and security (i.e. the "non-functional requirements"). Of course I...

  • RE: How to call JAVA class file in sql trigger

    One more option might be to use CLR integration, to get at the JAR from one of the integration libraries (such as IKVM). This will make the parameter passing...

  • RE: Is SQL right for this?

    While SQL Server could no doubt hold that data, it would be only a part of the solution.

    The User interface part would have to be provided somehow,...

  • RE: is it possible to union all two CTEs?

    I think you're looking for something like this.

    ;with ct1 as

    (select

    name

    ,Duration, 2 as rank

    from #temp

    ), ct2 as

    (

    select

    name

    , sum(Duration) as value

    , 'Duration' as category,

    , 1 as rank

    from ct1

    group...

  • RE: The IT Employee Benchmark

    ejoell 66477 (4/29/2013)


    Wow. Many issues and comments.

    One issue concerning asking applicant how to resolve a situation. That's how I got my first two jobs in the field. ...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (4/26/2013)


    jasona.work (4/26/2013)


    I just going to hope we don't get mocked on Saturday for wearing our Red Wings jerseys...

    As for smuggling back Canucks, do we want the hockey players...

Viewing 15 posts - 781 through 795 (of 6,486 total)