Viewing 15 posts - 1,246 through 1,260 (of 1,988 total)
Just based on that logic if any record in the your staging table matches anything in the target table very row in the staging table would be treated as an...
November 9, 2016 at 2:49 pm
Yes it will process text files in line order, that is no guarantee however that they'll come out of a database table in that order. The line counter can...
November 8, 2016 at 3:42 pm
Well if you really don't know the lengths just import everything as varchar(max) then proceed to do some analysis from there.
November 8, 2016 at 12:18 pm
whereisSQL? (11/4/2016)
Ed Wagner (11/4/2016)
Jeff Moden (11/4/2016)
Eirikur Eiriksson (11/4/2016)
crookj (11/4/2016)
Luis Cazares (11/4/2016)
djj (11/4/2016)
Ed Wagner (11/4/2016)
Revenant (11/4/2016)
Hugo Kornelis (11/4/2016)
Luis Cazares (11/4/2016)
MatchWinner
Medal
Olympics
Olympian
Zeus
Orion
The Hunter
Betelgeuse
Telescope
Astronomy
Phrenology
November 4, 2016 at 12:30 pm
DECLARE @query nvarchar(max)
SET @query = (SELECT STUFF(COL_ONE, 1, 10, '') FROM
(SELECT ' UNION ALL SELECT DISTINCT ' + char(39) + COLUMN_NAME + char(39) + '' + ' FROM...
November 4, 2016 at 12:21 pm
Steve Jones - SSC Editor (11/3/2016)
ZZartin (11/2/2016)
November 4, 2016 at 10:22 am
It always surprises me that companies will have no issues putting up 6-7 figures on deployments in licensing/man hours but then put up a huge fight over an extra 5-10...
November 3, 2016 at 11:45 am
Nifty, too bad I don't create tables often enough to care much about this vs just declaring the indexes separately. Especially if SSMS wasn't also updated to script out...
November 3, 2016 at 11:31 am
Did you try updating the statistics on the tables in question first?
November 2, 2016 at 12:38 pm
I don't feel it's the job of IT to play vigilante and hunt down people potentially abusing the system, unless you work in InfoSec and are just an evil person.
November 2, 2016 at 8:10 am
Manic Star (11/1/2016)
Luis Cazares (11/1/2016)
jasona.work (11/1/2016)
Ed Wagner (11/1/2016)
Luis Cazares (11/1/2016)
crookj (11/1/2016)
djj (11/1/2016)
Revenant (11/1/2016)
Ed Wagner (11/1/2016)
Alan.B (11/1/2016)
djj (11/1/2016)
Luis Cazares (11/1/2016)
Ray K (11/1/2016)
ResistanceRebellion
Jedi
academy
Apprentice
Sorcerer
Wizard
prestidigitator
Magician
Illusion
Mysterio
Rey
Manta
Bat
November 1, 2016 at 3:08 pm
What about this, since you don't have any other criteria the results will be fairly arbitrary if you have multiple rows that are returned either with ThisRec or no rows...
November 1, 2016 at 11:52 am
Gary Varga (11/1/2016)
November 1, 2016 at 8:40 am
RVO (10/31/2016)
I'm confused.
You're saying it's a good idea to have staging tables in a separate database
but then what do I do with Foreign Keys?
Flow is the following:
1. load into...
October 31, 2016 at 8:57 am
aaron.reese (10/28/2016)
With CF you can rapidly prototype based on the business problem and then retro-fit the underlying data structure without having to touch the business logic or the entity classes.
Business...
October 28, 2016 at 1:03 pm
Viewing 15 posts - 1,246 through 1,260 (of 1,988 total)