Forum Replies Created

Viewing 15 posts - 6,811 through 6,825 (of 8,753 total)

  • RE: Job run error

    It is a separate download, SQL Server Data Tools for SQL Server 2014.

    😎

  • RE: Job run error

    The SSDT 2014 is an additional download (last time I checked). To run the 2012 jobs/packages on the 2014 system there are two options, install the 2012 SSIS components on...

  • RE: Job run error

    ramana3327 (10/11/2014)


    Hi,

    The job is running in Sql 2012 succefully.

    I migrated that job in to Sql 2014 instance that is running in seperate box.

    The job is running the ssis package. That...

  • RE: Update ID in the table

    Jeff Moden (10/11/2014)


    jacksonandrew321 (10/11/2014)


    Thanks Eiriksson for ur reply. I wasn't familiar with this id update.

    This kind of information is available in a tool called "Books Online". It's the "Help"...

  • RE: Find greatest value in a series of columns and select a related column value

    Just for fun, here is a union alternative, certain that this is not the most efficient solution but it is simple to write and fun to play with, uses XML...

  • RE: Fun Data Analysis

    Eric M Russell (10/11/2014)


    Eirikur Eiriksson (10/11/2014)


    Worked for a national statistics office a while back, seen some "interesting" interpretations especially when politics get thrown in the works, very CREATIVE business:-P

    😎

    There are...

  • RE: Visual Studio

    ramana3327 (10/10/2014)


    Hi,

    I installed sql 2014 enterprise edition. I didn't see any visual studio installation by the selection of Integration Service. Where we can develop the Packages?

    I am giving the attachment...

  • RE: Fun Data Analysis

    Worked for a national statistics office a while back, seen some "interesting" interpretations especially when politics get thrown in the works, very CREATIVE business:-P

    😎

  • RE: How would you recommend doing this?

    cbrammer1219 (10/10/2014)


    Will this be the same with SSIS 2010?

    This is the essentially the same in SSIS 2012 (VS 2010)

    😎

  • RE: Update ID in the table

    Quick thought, an identity property column cannot be updated, here is a demonstration and a workaround

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    /* Drop if exists */

    IF OBJECT_ID(N'dbo.TBL_IDENTITY') IS NOT NULL DROP TABLE dbo.TBL_IDENTITY;

    /*...

  • RE: Help with Pivot

    Quick (semi) dynamic sql approach, simple and self explanatory

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID(N'dbo.TBL_SAMPLE_DATA') IS NOT NULL DROP TABLE dbo.TBL_SAMPLE_DATA;

    CREATE TABLE dbo.TBL_SAMPLE_DATA

    (

    Doc_ID VARCHAR(20) ...

  • RE: Are the posted questions getting worse?

    GilaMonster (10/10/2014)


    TomThomson (10/10/2014)


    This isnt true of Windows Firewall with Advanced Security, which does allow specific addresses

    Which the OP said he's using (albeit with a incorrect word, he said advanced settings...

  • RE: Generating 5min, 15min etc candlestick chart from 0 minutes data

    Koen Verbeeck (10/10/2014)


    balasundar.sp (10/10/2014)


    Koen, i am not very familiar with windowing functions. If you could give me the select query would be of great help..

    You should see this as an...

  • RE: Table Growing in Size but data/index does not support the size

    Quick notes:

    1) First of all this server needs patching, suggest you bring it up to SP3.

    2) Read activity will not alter the data in any way, shape or form,...

Viewing 15 posts - 6,811 through 6,825 (of 8,753 total)