Viewing 15 posts - 1,381 through 1,395 (of 2,647 total)
CELKO (3/19/2012)
March 19, 2012 at 2:28 pm
Check this out: http://www.bimonkey.com/2010/05/an-sql-alternative-to-the-scd/
March 19, 2012 at 1:41 pm
MyDoggieJessie (3/19/2012)
This may be a silly point but if you're running this on a 32-bit windows server isn't the max RAM available only going to be 4GB?
No, with AWE enabled...
March 19, 2012 at 1:38 pm
CU is a "cumulative update." Cumulative means up to and including. Therefore, the answer to your question is "yes."
March 19, 2012 at 1:25 pm
I think it comes down to more of what it is doing. When I ask the engine to generate a script for me, I don't "expect" any sort of...
March 19, 2012 at 11:44 am
Kenneth.Fisher (3/19/2012)
SQLKnowItAll (3/19/2012)
Also... Just curious. What version are you currently on?SQL is 2008 Enterprise SP1
Sorry... Can you run SELECT @@version and post the full version?
March 19, 2012 at 10:37 am
Also... Just curious. What version are you currently on?
March 19, 2012 at 10:05 am
er.sivaganesh (3/16/2012)
Jared
SQL Know-It-All for u job s for me and i inform u solved this problem by ...
March 16, 2012 at 1:54 pm
er.sivaganesh (3/15/2012)
sorry one question but we can have loop it also possible or not in sql server
It is possible, but not optimal in most cases. In...
March 15, 2012 at 3:21 pm
My first concern is that you are talking about partitioning on ID, but I assume from your previous partition naming that it is actually partitioned on date. So which...
March 15, 2012 at 3:12 pm
k, I'm going to try this one last time...
CREATE PROCEDURE [CategoryName]
@VALUES varchar(1000)
AS
SET @VALUES = REPLACE(RTRIM(LTRIM(@VALUES)), ' ', '%' );
SELECT c.CategoryName
, CategoryId
, SB.SubCategoryName
, SB.SubCategoryId
FROM tblAdCategory...
March 15, 2012 at 1:53 pm
Lynn Pettis (3/15/2012)
SQLKnowItAll (3/15/2012)
Lowell (3/15/2012)
no need to cross post to multiple forums it fractures the answers you get and makes posters duplicate others work.
the "Recent Posts" link shows us...
March 15, 2012 at 1:43 pm
From MS http://support.microsoft.com/kb/314648
In comparing the numbers reported by SQL Profiler with those from STATISTICS IO, it is important to note that logical and physical IOs may be incurred doing work...
March 15, 2012 at 1:38 pm
I am certainly not an expert in this, but the profiler specifically looks at "logical Disk Reads" whereas the statistics IO show"logical reads." I am guessing it has something...
March 15, 2012 at 1:34 pm
Lowell (3/15/2012)
no need to cross post to multiple forums it fractures the answers you get and makes posters duplicate others work.
the "Recent Posts" link shows us everything.
continue the thread...
March 15, 2012 at 1:34 pm
Viewing 15 posts - 1,381 through 1,395 (of 2,647 total)