Viewing 15 posts - 2,971 through 2,985 (of 4,820 total)
whenriksen (12/21/2016)
CELKO (12/19/2016)
The best teachers I ever had were the ones that humiliated me when I was blindly stupid and could not get the basic concepts.
Here you just scare people...
December 21, 2016 at 8:01 am
And now that I've seen the post about needing to deal with the possibility of more than one action in a given day, I've decided to tackle that one. ...
December 21, 2016 at 7:40 am
Okay folks, having realized that my query was only going to handle one ID value, I began to look a little deeper into this. I won't necessarily worry...
December 21, 2016 at 7:22 am
Just another way to tackle it, using CROSS APPLY:
IF EXISTS (SELECT 1 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Data')
DROP TABLE Data;
CREATE TABLE...
December 20, 2016 at 3:25 pm
drew.allen (12/20/2016)
December 20, 2016 at 2:24 pm
Brad Feaker-195979 (12/20/2016)
SELECT CAST(Coalesce (RIGHT(EDI_Batch_Number,4), 1325 ) AS VARCHAR(4)) AS 'Batch...
December 20, 2016 at 11:15 am
gp-sql-novi (12/19/2016)
I have created a stored procedure(1) to do an insert / update when a parameter is passed. i have a table that stores name and age, and a...
December 20, 2016 at 10:47 am
Lord Slaagh (12/19/2016)
I have been struggling trying to import data from SQL to Vertica using CMD shell. Does anyone have experience with this? I would like to be able...
December 20, 2016 at 10:37 am
Replicant21 (12/20/2016)
I'm looking for some advice on the best way to change the data type on a column from an INT to a BIGINT on a table with 220 million...
December 20, 2016 at 10:26 am
gdpollock (12/19/2016)
In my brevity, I think I left some details out. I don't believe this will be a case of users editing their reports--they'll input other data that...
December 19, 2016 at 12:44 pm
MickyD (12/19/2016)
Apologies , that should read SQL 2016 and Compatibility levels
Either that, or you've traveled 90 years into the past... 😉
December 19, 2016 at 12:32 pm
gdpollock (12/19/2016)
I'm starting a new position as a SQL developer for an organization that primarily does reporting. They are now getting requests to allow record-edits and simple insert update...
December 19, 2016 at 11:03 am
psred (12/19/2016)
December 19, 2016 at 10:52 am
rash3554 (12/19/2016)
I want to do FulltextSearch on only 500 characters of columns in a table to find employees and companies that use Natural Language processing (NLP)
Employee...
December 19, 2016 at 6:56 am
CELKO (12/18/2016)
, I (and many others) get really pissed off when people make illiterate/ignorant claims like "an order clause converts a set into a cursor".
Illiterate and ignorant? Which...
December 19, 2016 at 6:46 am
Viewing 15 posts - 2,971 through 2,985 (of 4,820 total)