Forum Replies Created

Viewing 15 posts - 256 through 270 (of 1,192 total)

  • RE: Stored procedure creation

    Visual Studio has a schema comparison tool, if you've got BIDS or SSDT installed it should be there in the Data or SQL menu.

    Why it doesn't come with/integrate with SSMS...

  • RE: Please vote for the "built in Tally Table" function.

    Luis Cazares (11/26/2014)


    Jeff Moden (11/26/2014)


    Jeff Moden (11/26/2014)


    SQLRNNR (11/26/2014)


    I decided to down vote this one. Everybody should just go to Oracle where they already have the functionality. (devil)

    😛

    BWAAAA-HAAAAA-HAAAA!!!! ...

  • RE: Please vote for the "built in Tally Table" function.

    Luis Cazares (11/26/2014)


    Jeff Moden (11/25/2014)


    Thanks Koen and Eirikur!

    How about it folks? There a 1.7 million of you out there. Can we get a few more votes on this...

  • RE: Are the posted questions getting worse?

    Ed Wagner (11/26/2014)


    jcrawf02 (11/26/2014)


    Stuart Davies (11/26/2014)


    Eirikur Eiriksson (11/26/2014)


    WayneS (11/26/2014)


    ..what the vote count was..

    If I remember correctly it was 135 after my vote

    😎

    Mine made it 143

    it's showing 147 right now, and...

  • RE: Arbitrary grouping of Rows in a table - how to do?

    You just need a group, always on the same field?

    Right click on the detail row -> Add Group -> Row Group -> Parent Group... and choose the field you're grouping...

  • RE: Out of memory error

    aicha.techn (11/26/2014)


    I've also noticed that other reports even if they take time running but they use just 3GB of RAM. So I think that the report which takes all the...

  • RE: Are the posted questions getting worse?

    SQLRNNR (11/25/2014)


    Eirikur Eiriksson (11/25/2014)


    Gazareth (11/25/2014)


    SQLRNNR (11/24/2014)


    Eirikur Eiriksson (11/24/2014)


    SQLRNNR (11/24/2014)


    Jeff Moden (11/24/2014)


    Eirikur Eiriksson (11/24/2014)


    Just a quick question to "the thread", am I missing something or is XML getting more popular? Just...

  • RE: Out of memory error

    You may be hitting the memory limits on your development machine as VS is 32-bit.

    I don't use SSDT or RS 2012 so can't confirm it happens there but I used...

  • RE: Out of memory error

    Are you running the report from the Reporting Services web page, or in Visual Studio/BIDS/SSDT?

  • RE: Are the posted questions getting worse?

    SQLRNNR (11/24/2014)


    Eirikur Eiriksson (11/24/2014)


    SQLRNNR (11/24/2014)


    Jeff Moden (11/24/2014)


    Eirikur Eiriksson (11/24/2014)


    Just a quick question to "the thread", am I missing something or is XML getting more popular? Just noticed that this topic...

  • RE: find total disk size

    spaghettidba (11/21/2014)


    Gazareth (11/21/2014)


    It works on 2008 R2. I didn't know it existed though, thanks Gianluca!

    Thanks, I didn't know it worked on 2008 R2. Maybe it arrived with a later...

  • RE: find total disk size

    Ed Wagner (11/21/2014)


    spaghettidba (11/21/2014)


    You don't need xp_fixeddrives any more:

    SELECT DISTINCT vs.volume_mount_point

    , vs.logical_volume_name

    , vs.total_bytes

    , vs.available_bytes

    FROM sys.master_files AS mf

    CROSS APPLY sys.dm_os_volume_stats(mf.database_id, mf.file_id) AS vs

    I must admit I was excited when I saw...

  • RE: For Each - Remove-Item

    Gary Varga (11/20/2014)


    Gazareth (11/20/2014)


    Should

    $result | foreach $result {remove-item $result.fullname -force}

    be

    $result | foreach {remove-item $result.fullname -force}

    or

    $result | foreach {remove-item $_.fullname -force}

    The latter. The former doesn't use the current object in the...

  • RE: For Each - Remove-Item

    Should

    $result | foreach $result {remove-item $result.fullname -force}

    be

    $result | foreach {remove-item $result.fullname -force}

    or

    $result | foreach {remove-item $_.fullname -force}

  • RE: Heap or clustered, What to do ...

    GilaMonster (11/14/2014)


    Luis Cazares (11/13/2014)


    g.britton (11/13/2014)


    SeanNerd (11/13/2014)


    My question is about indexing strategy for the following scenario:

    I have a table where we cannot use the typical int identity primary key column. The...

Viewing 15 posts - 256 through 270 (of 1,192 total)