Viewing 15 posts - 6,346 through 6,360 (of 7,597 total)
Here's my version to do only a single pass of the table.
But I'm not sure why you want to list only "D" in the result, since both "B" and "D"...
September 30, 2013 at 1:39 pm
Seems to me like it must be two different RAID5 sets ... wouldn't different drives on the same RAID set already be using both drives?!
Either way, I'd delay your #1...
September 27, 2013 at 3:22 pm
Neither CAST nor CASE is actually necessary here:
SIGN(CHARINDEX('@', <string_value>))
September 27, 2013 at 9:55 am
Btw, if weekdayid is unique (and it seems like it has to be for this table to make sense), get rid of the dopey IDENTITY column in this table! ...
September 27, 2013 at 9:50 am
... will select count(*) get the keep changed record numbers even if (nolock) hint is on?
Actually, it will count uncommitted records if and only if (nolock) or the equivalent is...
September 27, 2013 at 9:47 am
I prefer CROSS APPLY(s) to CTE(s) for aliasing. For example:
Select TOP 5 ID ,MID, RName,Pic1,FoodType.Descr AS FoodType,Average_P_PP,lat,lng,
ca1.Distance
From Member WITH(NOLOCK)
INNER JOIN FoodType WITH(NOLOCK) ON...
September 27, 2013 at 9:43 am
Why mess with the DATEFIRST setting when it's not necessary? There are methods which can do the calculation simply without needing a specific datefirst setting, so why hassle with...
September 27, 2013 at 9:38 am
As another kludge, you could probably do this:
COALESCE(
CASE WHEN @MonthUnits = 1 THEN GBAN01 ELSE NULL END,
CASE WHEN @MonthUnits = 2 THEN GBAN02 ELSE...
September 19, 2013 at 3:42 pm
You can use a FULL OUTER JOIN to find columns that are in only one object and not the other.
I can post sample code for that if you'd like.
September 19, 2013 at 3:18 pm
You're on the right track; definitely use the sys. views rather than the INFORMATION_SCHEMA views, which are not reliable in SQL Server (from 2005 on).
These are the basic tables you'll...
September 19, 2013 at 3:15 pm
I've been a manager. I'm not sure immediately running to a higher-level authority reflects well on you.
Avoid the drama if at all possible. Speak privately and directly with...
September 18, 2013 at 12:38 pm
Or this:
SELECT SUBSTRING(@MyValue, CHARINDEX('<EntryID>', @MyValue) + 9, CHARINDEX('</EntryID>', @MyValue) - CHARINDEX('<EntryID>', @MyValue) - 9)
September 18, 2013 at 9:22 am
UPDATE dbo.tablename
SET col = LEFT(col, CHARINDEX('.', col) + 2)
WHERE col LIKE '%.___%'
September 17, 2013 at 10:39 am
INSERT INTO #tmpJDEnbrunits
SELECT
'000' + ltrim(MCMCU),
CASE @MonthUnits WHEN 1 THEN GBAN01 WHEN 2 THEN GBAN02 WHEN 3 THEN GBAN03 --...
...
September 17, 2013 at 10:35 am
I think this rewrites the UPDATE; don't have time now to do the INSERT. The code is somewhat confusing in that sometimes ITEMID is matched on and other times...
September 16, 2013 at 1:03 pm
Viewing 15 posts - 6,346 through 6,360 (of 7,597 total)