Viewing 15 posts - 1,711 through 1,725 (of 8,731 total)
Doctor Who 2 (12/27/2016)
That might be what I've done wrong. Or put differently, what I've not done. I don't think I enrolled in the Visual Studio Dev Essentials program. How...
December 27, 2016 at 4:00 pm
Some examples based on your last post.
SELECT ID,
SUBSTRING(ID, 4, 8000),
STUFF(ID, 1, 3, ''),
CASE WHEN ID LIKE 'ING%'
...
December 27, 2016 at 2:19 pm
Check the scope of the variable.
To keep it safe, I usually keep the scope of all the variables as package wide.
December 27, 2016 at 2:01 pm
Chris.McCarty (12/27/2016)
how to write a query - to exclude the field that starts with ING
select * form table where ID NOT LIKE 'ING%' ?
I want to exclude ING from all...
December 27, 2016 at 1:57 pm
Have you tried the query that you posted? Did it return the expected results? If not, what's the problem?
December 27, 2016 at 1:42 pm
December 27, 2016 at 11:17 am
This should show if it's developer or evaluation edition.
SELECT @@VERSION
Maybe you were contacted as a follow up from a CTP or some other version previous to the final release.
December 27, 2016 at 11:05 am
If you're new to this, I'd suggest you to use the Import/Export wizard and review the results.
There are also a lot of tutorials either written or on video. The process...
December 27, 2016 at 7:58 am
Why are you doing this in batches? It's usually faster to do a single load than multiple ones.
Are the columns indexed?
Are you really trying to return a million rows result...
December 27, 2016 at 7:25 am
If you're inserting into a non-nullable column from a value that could be null, ALWAYS use ISNULL() or COALESCE().
December 16, 2016 at 10:15 am
TomThomson (12/15/2016)
December 15, 2016 at 10:36 am
Would this do the same thing?
It's hard to know if there's no sample data and no code for the function.
INSERT INTO [RES-DW].[ROW].LogEntry (LogGUID, LogDatetime, MilliSeconds, LogType, LogAction, LogResult, AppGuid)
SELECT l.[rowGUID],
...
December 15, 2016 at 10:31 am
Sean Lange (12/15/2016)
george.p (12/15/2016)
Sean Lange (12/15/2016)
george.p (12/15/2016)
You're one of those people that puts all of the details in the...
December 15, 2016 at 9:38 am
Jeff Moden (12/15/2016)
{EDIT} Went from 0 replies to all those in the time it took me to type my answer.
Gail, Lowell and I posted almost at the same time....
December 15, 2016 at 8:58 am
Use INSERT INTO...SELECT...
And use a cross join to get the expected result.
December 15, 2016 at 8:27 am
Viewing 15 posts - 1,711 through 1,725 (of 8,731 total)