Forum Replies Created

Viewing 15 posts - 2,416 through 2,430 (of 8,731 total)

  • RE: Column for Table1 within subquery

    DEEPAK GUPTA-378433 (7/29/2016)


    Hello All

    How could I use Column for Table1 within subquery. I know this is not possible but there should be a nice way to achieve this.

    SELECT *

    FROM Table1...

  • RE: How Far Have You Traveled for a SQL Saturday?

    I've only been to 2 SQL Saturdays.

    For the first one I had to travel 130 miles (209km) to Orlando on 2012. We went to Disney World on Sunday, so we...

  • RE: Are the posted questions getting worse?

    TomThomson (7/28/2016)


    jasona.work (7/27/2016)


    Luis Cazares (7/27/2016)


    It's exhausting to write translated posts. I hope I'm not saying any nonsense as I'm a bit outside my common knowledge (referring to DBA tasks, not...

  • RE: SQL help

    So, are you good now?

  • RE: SQL help

    Why does record_id 2 ends up with value 'col1' for colname?

    Have you tried using MAX() and MIN() to aggregate rows?

  • RE: deleting from non updatable views

    This is interesting. I'm not sure if that's a bug or a feature. I would be inclined to call it a bug.

  • RE: SQL SERVER 2012 NDF, delete

    Douglas Rosa (7/27/2016)


    Tambien quisiera consultarles como podria montar o generar un informe el cual me diera el estado de salud de una instancia de sql server.

    Una de las formas más...

  • RE: Are the posted questions getting worse?

    It's exhausting to write translated posts. I hope I'm not saying any nonsense as I'm a bit outside my common knowledge (referring to DBA tasks, not Spanish :-D).

  • RE: SQL SERVER 2012 NDF, delete

    Douglas Rosa


    Hi I would like to go back to the traditional design of one mdf file and one ldf file, to be able to migrate my enterprise edition to a...

  • RE: GET MAX VALUE

    This is another option:

    SELECTAPPLICANTS_ID,

    APPL_CURRENT_STATUS,

    APPL_CURRENT_STATUS_DATE

    FROM APPLICANTS

    OUTER APPLY( SELECT TOP 1 *

    ...

  • RE: GET MAX VALUE

    This is one option:

    WITH CTE AS(

    SELECTAPPLICANTS_ID,

    APPLICATIONS_OCC.APPL_CURRENT_STATUS,

    APPL_CURRENT_STATUS_DATE

    ...

  • RE: How to skip the file?

    The most important part. How do you define the file has junk data?

  • RE: sql query

    Or you could use a table with all possible values.

    Here's an example on how to create it.

    CREATE TABLE Weeks(

    WeekCode int,

    ...

  • RE: SQL SERVER 2012 NDF, delete

    ¿Por qué quieres poner una limitación al diseño de la base de datos? El tener distintos filegroups y archivos te permitirá tener un diseño físico más flexible y puede facilitar...

  • RE: Are the posted questions getting worse?

    GilaMonster (7/27/2016)


    Can someone who speaks Spanish please check the translations? http://www.sqlservercentral.com/Forums/Topic1804719-2799-1.aspx

    Your response is translated correctly. I was going to reply but I haven't reached my computer yet.

Viewing 15 posts - 2,416 through 2,430 (of 8,731 total)