Forum Replies Created

Viewing 15 posts - 1,306 through 1,320 (of 7,164 total)

  • RE: SQL 2012 and Windows 8

    I agree, it ought to work unless they are repositioning SQL Server away from Enterprise use and moving more towards Home use 😀

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Different editions on same host

    I cannot think of a reason why that would be a problem for the database engines but you may run into issues with some of the shared services depending on...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Extract data from CSV file - SSIS

    Phil Parkin (4/9/2013)


    opc.three (4/8/2013)


    How are your C# or VB.net skills? I am thinking pre-processing the file might be one way. You could use a Script Task to read the file...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL 2012 and Windows 8

    I am happily running SQL 2012 Dev Edition on Windows 8 Pro and oddly enough Windows 8 Enterprise is not listed as a supported OS here.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Weird Performance problem. Fast on standalone laptop, slow on super-duper server.

    I am thinking initially it could be blocking but it truly could be any number of things. When they run it on the laptop I assume it's just the one...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: grant access to sp_who3

    Signing stored procedures using a certificate is useful when you want to require permissions on the stored procedure but you do not want to explicitly grant a user those rights.

    Tutorial:...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Linked servers

    USE [master]

    GO

    EXEC sys.sp_addlinkedserver

    @server = N'Production',

    @srvproduct = N'',

    @provider = N'SQLNCLI',

    @datasrc = N'127.0.0.1,1713'; -- fix...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Extract data from CSV file - SSIS

    How are your C# or VB.net skills? I am thinking pre-processing the file might be one way. You could use a Script Task to read the file in reverse order...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to call a batch file to execute from an SP

    Sergiy (4/8/2013)


    opc.three (4/8/2013)


    Yep, I remember that thread well...it's not the leaf level of the index that becomes fragmented, it's the mid-level pages because the clustering key is stored there. You...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Are Triggers a "legacy" Feature? (Database Weekly, Nov 08 2008)

    Sergiy (4/8/2013)


    quackhandle1975 (4/8/2013)


    Odd reply, Sergiy. My comment was aimed at beginners and programmers who find themselves coding t-sql.

    I reread your comment 5 times more - it does not say...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: CASE statement

    peacesells (4/8/2013)


    WHERE SS.[Key]='A'

    AND SO.[type]='X_P'

    AND vu.[Status]=1

    AND 1= CASE WHEN @CreateDateDatTime > vu.LastRunDate

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Can I SUM the 'LastPeriod' query results?

    Duplicate post. Direct replies here: http://www.sqlservercentral.com/Forums/Topic1440114-391-1.aspx

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: What is an index.is is object ??how visualize...

    But how index can be visualize.is it same as that of index on books.

    Pretty much. Non-filtered indexes will have an entry for every row in the table, sorted per the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to call a batch file to execute from an SP

    Yep, I remember that thread well...it's not the leaf level of the index that becomes fragmented, it's the mid-level pages because the clustering key is stored there. You were wrong...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS question

    No, you do not need the original Solution or Project file. You can export the Package using SSMS or dtutil.exe and modify it on your local machine. You can also...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 1,306 through 1,320 (of 7,164 total)