Forum Replies Created

Viewing 13 posts - 1 through 14 (of 14 total)

  • RE: SSMS 2008 - Is there a way to better display tables in various schemas

    Or try SSMS add-in SQLTreeo. It enables you to organize tables, databases or stored procedures in your custom folders.

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: "Recursive" Update query

    Thanks very much!

    I wrote exactly same query in the meantime. Only thing I would change for metioned large datasets is adding WHERE clause to last update which filters only rows...

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: Custom folders in SSMS

    Hi,

    just to let you know: I've finally finished mentioned SSMS custom folders add-in. It is downloadable here.

    Jakub

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: How to use temporary table in function

    We've already discussed that a bit Please read the full thread.

    Jakub

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: How to use temporary table in function

    Yes, it's working in Denali as well...

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: How to use temporary table in function

    See this schematic "code":

    1) Pull data from fixed tables to temporary structures (used for sharing) only once

    2) Perform complex logic above temporary structures

    Point 2) includes calling to many functions and...

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: How to use temporary table in function

    Agree, but you must also include performance aspect. If I use solution you described it would mean that for every call of this function I would have to insert data...

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: How to use temporary table in function

    To be honest, I am not sure if I understood well your problem - can you explain it in more detail? It looks that using UDDT as input parameter might...

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: How to use temporary table in function

    I'd also suggest reading article in link below. This is exhausting description of all possible options which you can use for sharing data between procedures. I really spent a lot...

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: How to use temporary table in function

    Practical example behind this article was following:

    I needed to share data among stored procedures because I had very complex task which required to pull data from fixed tables to...

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: Loading records from two tables at specific interval….INSERT INTO?

    Hi,

    since BusinessEntity has BusinessEntityID column which is Identity (1,1), you can get ID of newly inserted BusinessEntity by calling built-in SCOPE_IDENTITY() function.

    Like that:

    DECLARE @businessEntityId INT

    -- insert into BusinessEntity

    SELECT @businessEntityId...

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: Migration From MSSQL 2008 to MSSQL 2008R2

    Hi,

    there might be some missing index, incorrect statistics, generally whatever because there are completely separated environments. I would check execution plans of both queries at first. If you can paste...

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

  • RE: SQL Server and TSQL Technical Questions for an Interview

    Hi,

    I've read quite good article on this theme few weeks ago here - http://www.learn.geekinterview.com/resources/interview-articles/sql-interview-questions-with-answers.html.

    Jakub

    __________________________________________________________________________________________SQLTreeo.com - My Blog and Free SSMS Productivity Add-In

Viewing 13 posts - 1 through 14 (of 14 total)