Viewing 15 posts - 17,986 through 18,000 (of 26,484 total)
rudyhinojosa2007 (12/11/2009)
December 11, 2009 at 10:49 am
Thank you for the feedback. We'll try to answer any questions you may have.
December 11, 2009 at 10:46 am
Since this is SQL Server 2005, you can save the Actual Execution plan as .sqlplan file and upload that.
December 11, 2009 at 7:25 am
Actually, without seeing the actual package, it depends on the scope of the variable. If you declare a variable in a FOREACH container named MyForEach1, you won't see that...
December 11, 2009 at 7:13 am
polo.csit (12/11/2009)
Hi All,how to reduce the memory useage of the sqlserver.exe process
I have to ask the same question, why? Usually, SQL Server works better the more memory it has...
December 11, 2009 at 7:06 am
I'll give you a hint since you haven't shown us what you have tried so far, in BOL (Books Online, the SQL Server Help System that you can access by...
December 11, 2009 at 6:55 am
Isn't amazing what happens when you finally provide what you have been asked for several times? 🙂
That is why I kept asking you to read the article and provide the...
December 11, 2009 at 12:33 am
ray 78019 (12/10/2009)
Bru, if you look at the left side of...
December 10, 2009 at 7:37 pm
I wrote the article Deleting Large Number of Records[/url]. Take a look at the code for SQL Server 2005, you should be able to use that as a starting...
December 10, 2009 at 6:45 pm
clive-421796 (12/10/2009)
the procs we have use the following variations:
@StartDate = '2009-11-01'
@StartDate = '2009-11-01 12:00:00'
@EndDate = '2009-12-01'
@EndDate = '2009-12-01 23:59:59'
2 months ago I had to use your method below:
WHERE
...
December 10, 2009 at 4:25 pm
The following meets your requirements:
CREATE TABLE #INBOUND_PLM_CHCM (PER_NR INT, [STATUS] INT, SOC_MAPPING VARCHAR(10))
INSERT INTO #INBOUND_PLM_CHCM (PER_NR, [STATUS], SOC_MAPPING)
SELECT 12345, 0, 'PLM-5000' UNION ALL
SELECT 12346, 3, 'PLM-5001' UNION ALL
SELECT 12347,...
December 10, 2009 at 4:21 pm
clive-421796 (12/10/2009)
WHERE
tbl.YourDateColumn >= @StartDate
AND tbl.YourDateColumn < @EndDate
I prefer to use:
WHERE
tbl.YourDateColumn between @StartDate AND @EndDate.
-------------------------
Have...
December 10, 2009 at 3:50 pm
Jeff Moden (12/10/2009)
Lynn Pettis (12/10/2009)
Jeff Moden (12/10/2009)
clive-421796 (12/10/2009)
December 10, 2009 at 3:32 pm
Viewing 15 posts - 17,986 through 18,000 (of 26,484 total)