Viewing 15 posts - 4,756 through 4,770 (of 8,761 total)
Revenant (8/11/2015)
SQLRNNR (8/11/2015)
dearthsincerity
naΓ―ve
August 12, 2015 at 1:45 am
For giggles here is yet another slightly modified version. The difference doesn't look much but it is an improvement over the first one of roughly 20% and 5-10% over Luis's...
August 12, 2015 at 1:38 am
mar.ko (8/11/2015)
BEGIN
FETCH NEXT FROM C_tables INTO
@ColName
,@ColOrdPosit
,@TabSchema
,@TabName
,@ColDataType
,@ColDefaultVal
;
PRINT @ColName + ' ' +STR(@ColOrdPosit) + ' ' +@TabSchema + ' ' +@TabName + ' ' + @ColDataType +...
August 11, 2015 at 3:20 pm
Michelle-138172 (8/11/2015)
August 11, 2015 at 2:43 pm
Didn't think I was geeky or nerdy but 30min after "just looking at few things", this was the MRU list
π
August 11, 2015 at 2:36 pm
SQLRNNR (8/11/2015)
Just curious if anybody knows what a "SPAM DIG" happens to be? Is that like a clam dig?
In simple terms, blacklisting
π
August 11, 2015 at 2:17 pm
Sean Lange (8/11/2015)
maria.witkowski (8/11/2015)
Not sure which is more efficient?? The table has about 40k rows in it. But I will try both! Thank you again!
I don't think that Eirikur...
August 11, 2015 at 1:27 pm
mar.ko (8/11/2015)
However, I am unable to determine what is the value for Default.
Is it '' ?
Default is not permitted as a constant - below fails to parse:
WHERE t2.TABLE_TYPE...
August 11, 2015 at 1:25 pm
Steve Jones - SSC Editor (8/11/2015)
Ahh, 50,000 posts. Off doing real work and missed it. Amazing. Lots of forums don't have 50,000 posts in total.
Would have been more if "someone"...
August 11, 2015 at 12:52 pm
Quick alternative to Luis's fine solution
π
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @SAMPLE_DATE TABLE (account INT ,dates DATE);
INSERT INTO @SAMPLE_DATE(account,dates)
VALUES
(1234565, '2015/01/01')
,(1234565, '2015/02/15')
,(1234565, '2015/02/16')
,(1234565, '2015/08/01');
SELECT TOP (3)
SD.account
...
August 11, 2015 at 12:47 pm
SQLRNNR (8/11/2015)
Grant Fritchey (8/11/2015)
Lynn Pettis (8/11/2015)
Can't place the movie or show that came from, but love the editing!Big Trouble in Little China.
That was quick.
Nothing better than a whole hog chop...
August 11, 2015 at 12:31 pm
eccentricDBA (8/11/2015)
whereisSQL? (8/11/2015)
Revenant (8/11/2015)
Ed Wagner (8/11/2015)
Luis Cazares (8/11/2015)
Ed Wagner (8/11/2015)
djj (8/11/2015)
Eirikur Eiriksson (8/11/2015)
Ed Wagner (8/11/2015)
TomThomson (8/10/2015)
SQLRNNR (8/10/2015)
centrifugeacceleration
Velocity
Inertia
Energy
Force
Dark Side
Sith
Emperor
Darth Sidious
Dark Helmet
Asthma
August 11, 2015 at 12:02 pm
Jeff Moden (8/11/2015)
Ed Wagner (8/11/2015)
Sean Lange (8/11/2015)
Grant Fritchey (8/11/2015)
Sean Lange (8/11/2015)
August 11, 2015 at 11:35 am
Quick suggestion
π
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @sourcedata TABLE(STR_DATA VARCHAR(100) NOT NULL);
INSERT INTO @sourcedata(STR_DATA)
VALUES
('/@836d254c/v1/HOME/INDEX' )
,('/@836d254c/v1/ASSIST/SPECIAL' ...
August 11, 2015 at 11:25 am
Grant Fritchey (8/11/2015)
Sean Lange (8/11/2015)
ATTRIBUTE1 nvarchar(1)
ATTRIBUTE2...
August 11, 2015 at 10:18 am
Viewing 15 posts - 4,756 through 4,770 (of 8,761 total)