Viewing 15 posts - 121 through 135 (of 190 total)
So how about a DBA who does not possess those qualities and does not qualify the criteria you have laid out? What's wrong with them? If I'm reading your editorial...
July 26, 2009 at 3:10 pm
Generally, I would not care if my neighbor was one of the "people of faith" or not. Nor would I care if my neighbor's political views or non-political ways of...
July 26, 2009 at 8:28 am
nathan.holtrop (7/22/2009)
Ken Simmons (7/21/2009)
Here is an article about index fragmentationhttp://msdn.microsoft.com/en-us/library/ms189858(SQL.90).aspx
And here is the script that I am currently using to defrag/rebuild all indexes.
There are several others available as well.
Ken,
I...
July 22, 2009 at 11:46 am
Slick84 (7/22/2009)
July 22, 2009 at 8:56 am
can I do a select against the @value to see what value its giving me after the update has been executed? in my example the @value should be 222 rows.....
July 22, 2009 at 8:41 am
How about the below:
DECLARE @value int
UPDATECatalogFeedTestDB.dbo.tblProductSizeWidthColor
SETfbitDeleted = 0
WHEREfintProductSizeWidthColorId IN
(
SELECTpswc.fintProductSizeWidthColorId
FROMCatalogFeedTestDB.DBO.tblProductSizeWidthColor pswc
INNER JOINBMBSTAGING.dbo.tblRegularItems ri
ONri.ItemNo=pswc.fstrLongSku and ri.EdpNo=pswc.fintEcometryId
WHEREpswc.fbitDeleted = 1 AND ri.Price > 0 --AND pswc.fstrEcometryStatus = 'A1' AND pswc.fstrLongsku LIKE '%FB%'
)
SET...
July 22, 2009 at 8:36 am
lol...
Thanks! I will try to implement that and provide an update here.
Btw, I know a lot of people come here to get their code written, and I probably sounded like...
July 22, 2009 at 8:31 am
Lynn,
Thanks for the hint it does help. Would it be too much to ask for if you could do this within my update statement ? Or would you need more...
July 22, 2009 at 8:20 am
Thats much better.
The recommended ANSI SQL standard is better to implement within the TSQL code to stay future-proof while also increasing your knowledge of joins which are an integral...
July 21, 2009 at 3:11 pm
You could use SQL Profiler to generate a trace file and use that within the Database Index Tuning Wizard.
Not sure if this is exactly what you are looking for...
July 21, 2009 at 12:46 pm
Also, from what I've read and learned and experienced, it would be better to use Inner Joins rather than joining within the WHERE clause.
July 21, 2009 at 12:39 pm
Elliott W (7/20/2009)
July 20, 2009 at 6:44 pm
Jeffrey Williams (7/20/2009)
PaulB (7/20/2009)
Slick84 (7/20/2009)
Would the inserts go first or the updates?
Two questions...
1- Are we talking about a small OLTP alike transaction OR are we talking about a large ETL...
July 20, 2009 at 3:47 pm
PaulB (7/20/2009)
Slick84 (7/20/2009)
Would the inserts go first or the updates?
Two questions...
1- Are we talking about a small OLTP alike transaction OR are we talking about a large ETL alike transaction?
2-...
July 20, 2009 at 3:45 pm
Viewing 15 posts - 121 through 135 (of 190 total)