Viewing 15 posts - 6,511 through 6,525 (of 7,600 total)
SELECT IP.IPCode, MAX(AllSubtables.UpdateDate) AS LastUpdateDate
FROM SAMPLE.IP IP
INNER JOIN (
SELECT IPCode, MAX(UpdateDate) AS UpdateDate FROM SAMPLE.IP IP2 GROUP BY IP2.IPCode
UNION ALL
SELECT IPCode, MAX(UpdateDate) AS UpdateDate FROM SAMPLE.AddressProfile AP GROUP BY AP.IPCode
UNION...
July 12, 2013 at 4:19 pm
SELECT CASE WHEN Total_Rows = Active_Rows THEN 'Valid' ELSE 'Invalid' END AS Status
FROM (
SELECT
SUM(1) AS Total_Rows,
...
July 12, 2013 at 3:49 pm
Welsh Corgi (6/24/2013)
I'm using the Data calculation in the WHERE Clause.
WHERE Effective_Date < CONVERT(DATE, DateAdd(yy, - 5, GetDate()));
Does it matter which method I use as far...
July 12, 2013 at 3:35 pm
Sean Pearce (7/11/2013)
ScottPletcher (7/11/2013)
Sean Pearce (7/11/2013)
bert.hooks (7/11/2013)
Wow. Insults from an idiotic know-it-all.
Pot --> kettle --> black.
Excuse me for being defensive, but Microsoft products have been putting food on...
July 11, 2013 at 9:09 am
PearlJammer1 (7/11/2013)
Scot - your suggestion worked. I had to enable the MSDTC service and now the distributed queries run.Thanks for the pointer !
🙂
No problem. That's the most common fix,...
July 11, 2013 at 8:55 am
Sean Pearce (7/11/2013)
bert.hooks (7/11/2013)
Wow. Insults from an idiotic know-it-all.
Pot --> kettle --> black.
Excuse me for being defensive, but Microsoft products have been putting food on my table since...
July 11, 2013 at 8:54 am
You could also just add a "GO" after the ALTER TABLE; that will put the SELECTs in a separate batch, by which table SQL should "know" they already exist, having...
July 10, 2013 at 11:57 am
After you issue the command(s) below, the next time SQL starts, tempdb will be sized accordingly.
Split the 2GB into equal parts, for however many tempdb data files you have.
For this...
July 10, 2013 at 10:28 am
First verify that DTC (Distributed Transaction Coordinator) is up and running properly on both(/all) instances.
July 10, 2013 at 10:22 am
I think SQL parses things a batch at a time. All your code is in the same batch, and the table is created in that batch. That might...
July 10, 2013 at 10:18 am
It's a kludge, but when I really needed it, I simply change the db context to tempdb if the function already exists in the main db, then delete the function...
July 9, 2013 at 4:49 pm
ISNULL() has its own oddities:
DECLARE @var1 char(1)
SET @var1 = NULL
SELECT ISNULL(@var1, 'N/A') -- Result = 'N'
July 5, 2013 at 1:30 pm
I'd suggest using COALESCE also, keeping in mind the difference between it and ISNULL in regard to data types.
Given that, in this case you could explicitly CAST the 99 to...
July 5, 2013 at 11:46 am
SELECT
mt.##col1##, ..., jt.##co11##, ...
FROM dbo.maintable mt
LEFT OUTER JOIN jointable jt ON
--ignore last two bytes of patid if they are alpha, because it's...
July 1, 2013 at 2:25 pm
IIRC, partitioned views are allowed in Standard Edition (at least as long as you don't try to update using a distributed partitioned view?).
As I noted first, a truly partitioned table...
June 24, 2013 at 2:04 pm
Viewing 15 posts - 6,511 through 6,525 (of 7,600 total)