Viewing 15 posts - 1 through 15 (of 270 total)
silly me
DECLARE @test-2 VARCHAR(8) '**** Change ****
August 9, 2021 at 11:07 pm
Thanks
Has 2019 had a few 'service packs' which make the code bugged out and stable?
Never like to be the first.
When I tried to up date 2008 r2 to 2014/2016 a...
February 8, 2021 at 5:48 pm
That's my point, I don't have that menu item?
see attached item
August 22, 2019 at 11:34 pm
IF OBJECT_ID('tempdb..#priceData') IS NOT NULL DROP TABLE #priceData;
create table #priceData(
[ID] [int] NULL,
[Symbol] [varchar](50) NULL,
[quote_date] [datetime] NULL,
[close_price] [decimal](18, 2) NULL
);
INSERT INTO #priceData (ID, symbol, quote_date, close_price) VALUES (8,'AAPL','20091026', 555.75)
INSERT INTO #priceData...
April 11, 2013 at 1:00 pm
Sorry YYYYWW not YYYYMM
thanks for reponses
January 6, 2013 at 3:21 pm
Thanks for your interest in my problem.
But that does not produce a sequential YYYYMM sequence!
Any other idea
January 6, 2013 at 12:33 pm
Thanks will learn more on this OUTER APPLY
February 19, 2012 at 4:59 pm
Thanks Lutz, will play with that !
Livingston SQL ; Dont understand your last post!
February 12, 2012 at 3:39 pm
my go..
DECLARE @CurrentDate DATETIME
SET @CurrentDate = GETUTCDATE()
IF OBJECT_ID('tempdb..#tempData') IS NOT NULL DROP TABLE #tempData;
CREATE TABLE #tempData(
Code INT,
Subs_End DATETIME
)
INSERT INTO #tempData VALUES (102,'2012-02-12 00:00:00.000')
INSERT INTO...
February 12, 2012 at 1:22 pm
Sir, I am an old fart working on a private project...just needed a little help !
Thanks 🙂
February 11, 2012 at 7:47 pm
Thanks, but that stuff hurts my head...:w00t:
Any one else wishing help out much appreciated...
February 11, 2012 at 4:36 pm
Viewing 15 posts - 1 through 15 (of 270 total)