Forum Replies Created

Viewing 15 posts - 8,401 through 8,415 (of 13,876 total)

  • RE: Boring or Scripting

    Or continue to be boring.

    Calling someone boring just because they can't script is a bit harsh!

  • RE: Developing SSIS Packages in SQL Server 2014

    And the answer to (A) is that there will be no issues installing it on the same server.

    Though if it's a production SQL server, you would normally not install...

  • RE: Need Ammunition for Developers Doing Select *'s

    Grant Fritchey (5/15/2015)


    Vyper426 (5/14/2015)


    I Really appreciate everyone who contributed information. I must also apologize for neglecting to let everyone know the other issue that brings me such joy in this...

  • RE: Update takes too long

    Jason A. Long (5/14/2015)


    That test was done using SQL Server 2014 Dev Edition. (Local instantaneous running on a laptop)

    Local instantaneous? That's fast!

  • RE: Data conversion error in SSIS

    metroman17 (5/14/2015)


    I am trying to get the servername into a sql table.

    Sql:select @@servername as ServerName as SQL command.

    The above sql is part of OLE DB Source

    The OLE DB Destination has...

  • RE: Column Store vs Row Store Indexes

    An interesting read, thank you very much. Hope you don't mind me mentioning a few minor typos:

    'FacTransaction_ColumnStore' – needs an extra 't'

    'Compression ration' – ratio

    'foorprint' – footprint

    'datawarhouse' – missing 'e'

    'which...

  • RE: How to get row of first change?

    tom.w.brannon (5/13/2015)


    Yes, intersect is not normal to me either. I actually changed it where exists and then used except. Still non-obvious logic for me so I am glad...

  • RE: T-SQL Query Help

    The proposed data structure is not pleasant, from a relational standpoint. You should never have repeated occurrences of people's names, for example. And rows 3 and 4 of your desired...

  • RE: SSIS 2012 version issue , package corrupt mystery

    RantaSanta (5/13/2015)


    Tried the steps , its still failing with same error . I have tried with one package out of five package . Driving me nuts . I can open...

  • RE: scheduling the SSIS jobs

    VRT (5/13/2015)


    --

    I don't see SQL Server Agent also, may be I don't have permissions to schedule.

    This sounds very likely.

  • RE: Package failed

    vipin_jha123 (5/13/2015)


    Hi According to me Checkpoint is used to restart the package from the point point where it fail.

    so u can seee that when your package failed one files are...

  • RE: Package failed

    reddychaitanyakrishna (5/13/2015)


    Hi,

    I have a DFT in a package which loads around 2lakhs records in to destination but, it fails loading after 1 lakh records, my package was checkpoint enabled. I...

  • RE: SSIS 2012 version issue , package corrupt mystery

    This is not a version issue. This relates to the fact that you saved the package with encrypt sensitive with user key turned on. if you save the package as...

  • RE: SSRS 2014 Performance issues

    sreenubabu.s (5/12/2015)


    We have installed recently SSRS 2014 (SQL 2014 RTM) and deployed the reports into the server and all users being accessed. We have done memory configuration in config file...

  • RE: How to get row of first change?

    Something like this?

    if object_id('tempdb..#date', 'U') is not null

    drop table #date;

    create table #date (a int, b int, dte date);

    insert #date

    (a

    ...

Viewing 15 posts - 8,401 through 8,415 (of 13,876 total)