Viewing 15 posts - 1 through 15 (of 55 total)
Martin Schoombee (2/24/2012)
Divine Flame (2/24/2012)
IF OBJECT_ID('tempdb..#MyTestTable24Feb2012') IS NOT NULL
BEGIN
DROP TABLE #MyTestTable24Feb2012
END
CREATE TABLE #MyTestTable24Feb2012
(
ID INT IDENTITY(1,1),
Value VARCHAR(20)
)
GO
INSERT INTO #MyTestTable24Feb2012 VALUES ('Param1')
INSERT INTO #MyTestTable24Feb2012 VALUES ('Param2')
INSERT...
February 24, 2012 at 12:16 pm
Martin Schoombee (2/24/2012)
stephen99999 (2/24/2012)
Would the SSIS for-each loop be faster (theoretically) ?
as for the 2nd sproc (xsp_run_sproc2), it accepts the parameter @value, gathers data from various tables based...
February 24, 2012 at 8:33 am
Martin Schoombee (2/24/2012)
I would re-write the...
February 24, 2012 at 8:21 am
fahey.jonathan (2/24/2012)
I don't know...
February 24, 2012 at 8:06 am
MarkusB (1/31/2012)
stephen99999 (1/30/2012)
I am using SQL Server 2008 R2 Express and Management Studio Express.I'm pretty sure that's the reason why you don't see SSRS
That is exactly what I thought. Thanks...
January 31, 2012 at 7:08 am
MarkusB (1/31/2012)
stephen99999 (1/30/2012)
How can you copy one report, and use that copy to build another report?
In your BIDS project choose a existing report and select the original rdl file. After...
January 31, 2012 at 7:02 am
As a jr. SQL dev, I had never gotten the chance to use some of the redgate tools. Earlier this month I checked out SQL Search (http://bit.ly/e6JRtf), and wow, just...
January 27, 2012 at 7:29 am
No, Steve you hit the nail on the head. I left out any details only to get a overall perspective from you guys on the topic.
I am Jr SQL...
January 23, 2012 at 9:10 am
Thanks Steve. Would you happen to have any links (you suggest) on managing/developing a DB that has calls from 2 or more applications?
January 23, 2012 at 8:43 am
1 app is for administrative (reporting, oversight, management), while the other is for end users (data entry, update, etc).
For the purpose of the question though, lets just say we...
January 23, 2012 at 8:20 am
Well we have 2 different .net applications due to the difference between users and business requirements. However, the data is the same for both.
My immediate thoughts on this would be...
January 23, 2012 at 7:55 am
Looks like it might be. I watched the intro video and read the description, and they say it shows all objects. Does this include stored procedures and functions?
Also, I saw...
January 20, 2012 at 12:32 pm
PERCENTILE_CONT / PERCENTILE_DISC
Lets recall from statistics that continuous variables (PERCENTILE_CONT) are those that "cannot not be exactly counted," while discrete variables (PERCENTILE_DISC) "have an exact amount."
PERCENTILE_CONT would be better...
January 19, 2012 at 8:24 am
Dave Ballantyne (1/18/2012)
January 18, 2012 at 1:35 pm
Viewing 15 posts - 1 through 15 (of 55 total)