Viewing 13 posts - 1 through 13 (of 13 total)
Or try SSMS add-in SQLTreeo. It enables you to organize tables, databases or stored procedures in your custom folders.
September 24, 2012 at 12:57 am
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...
October 7, 2011 at 3:58 am
Hi,
just to let you know: I've finally finished mentioned SSMS custom folders add-in. It is downloadable here.
Jakub
August 8, 2011 at 3:07 am
We've already discussed that a bit Please read the full thread.
Jakub
July 27, 2011 at 4:05 pm
Yes, it's working in Denali as well...
July 22, 2011 at 12:34 am
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...
July 21, 2011 at 12:25 pm
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...
July 21, 2011 at 11:55 am
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...
July 21, 2011 at 9:33 am
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...
July 21, 2011 at 8:19 am
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...
July 21, 2011 at 6:16 am
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...
May 15, 2011 at 5:39 am
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...
May 15, 2011 at 5:17 am
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
May 15, 2011 at 5:09 am
Viewing 13 posts - 1 through 13 (of 13 total)