Forum Replies Created

Viewing 15 posts - 7,741 through 7,755 (of 13,876 total)

  • RE: Are the posted questions getting worse?

    Michael L John (1/6/2016)


    Ed Wagner (1/6/2016)


    Sean Lange (1/6/2016)


    Ed Wagner (1/6/2016)


    Brandie Tarvin (1/6/2016)


    Sean Lange (1/6/2016)


    Wow. I rarely have to deal with user issues but I was just on a phone call...

  • RE: Are the posted questions getting worse?

    Alvin Ramard (1/6/2016)


    Jeff Moden (1/6/2016)


    Brandie Tarvin (1/6/2016)


    djj (1/5/2016)


    SQLBill (1/5/2016)


    If I hear of any openings anywhere that allow full work from home, I'll pass them your way.

    -SQLBill

    There all over the internet.:-P...

  • RE: Are the posted questions getting worse?

    Sean Lange (1/6/2016)


    Wow. I rarely have to deal with user issues but I was just on a phone call with one of our own people having an issue with our...

  • RE: Selecting a decimal

    sql_only (1/6/2016)


    Phil Parkin (1/6/2016)


    sql_only (1/6/2016)


    Phil Parkin (1/6/2016)


    sql_only (1/6/2016)


    was missing DECIMAL(18,16)...

    Might as well use (19,16) or (19,17) – same space occupied on disk (ref. here).

    Yes you're right.

    I have had to...

  • RE: Selecting a decimal

    sql_only (1/6/2016)


    Phil Parkin (1/6/2016)


    sql_only (1/6/2016)


    was missing DECIMAL(18,16)...

    Might as well use (19,16) or (19,17) – same space occupied on disk (ref. here).

    Yes you're right.

    I have had to settle with 2...

  • RE: advantages of having multiples files in a filegroup

    Hugo Kornelis (1/6/2016)


    GilaMonster (1/6/2016)


    On the same disk, none at all.

    ... in most scenarios.

    If you have a database that has a very high amount of table allocations and deallocations, you can...

  • RE: Selecting a decimal

    sql_only (1/6/2016)


    was missing DECIMAL(18,16)...

    Might as well use (19,16) or (19,17) – same space occupied on disk (ref. here).

  • RE: Header and Detail Data

    bpowers (1/5/2016)


    Ok I have two separate data flow tasks setup and can manually fire them off to populate the flat file. How do I set this up to run the...

  • RE: SQL SERVER 2014 - View value changes depending on the date

    antonio_scp125 (1/5/2016)


    SSCertifiable thanks for your response! You're right and I didn't explain very well the situation.

    Every time that a record are insert in the table, the flag New_Player be equal...

  • RE: SQL SERVER 2014 - View value changes depending on the date

    antonio_scp125 (1/5/2016)


    The beginning of the contract

    Please bear in mind that I have no idea about your data. I do not know what your contracts are. I don't know what 'players'...

  • RE: Datetime vs. Datetime2

    This construct

    t.ticket_date BETWEEN @SearchFromTicketDate AND @SearchToTicketDate + ' 23:59:59:997')

    Should be written like this, to completely avoid any problems with fractions:

    t.ticket_date >= @SearchFromTicketDate AND t.ticket_date < (@SearchToTicketDate + 1 day))

  • RE: SQL Server 2008 R2. SSIS not using Shared Memory.

    What is your connection string?

  • RE: SQL SERVER 2014 - View value changes depending on the date

    antonio_scp125 (1/5/2016)


    In a Data Mart I have a table with information about Players (Dimension Player). And It have the following attributes:

    •Name (nvarchar(250))

    •Dt_Contract (date)

    •New_Player (int)

    •DT_Execution (datetime)

    The New_Player is a...

  • RE: Header and Detail Data

    bpowers (1/5/2016)


    We received verification that the data can be submitted with all the Header data then the Detail data, as such:

    Header 06721

    Header 05482

    Header 04263

    Detail 06721

    Detail 05482

    Detail 05482

    Detail 04263

    Etc...

    Not sure if...

  • RE: Dynamically changing the value in Conditional split

    vipin_jha123 (1/5/2016)


    Please suggest the way by which I can get the solution

    You could try using FINDSTRING() instead.

    FINDSTRING(@[$Package::StateExcludeNames], [State], 1) == 0

    where [State] is the data column and

    $Package::StateExcludeNames is a...

Viewing 15 posts - 7,741 through 7,755 (of 13,876 total)