Viewing 15 posts - 4,711 through 4,725 (of 9,399 total)
Luis Cazares (11/13/2015)
hoseam (11/13/2015)
I have a column that has values [1,2,3....10,11,13,14 ...]
I want to return just two characters, e.g [01, 02, 03....10,11,12...]
I concatenated a string before to
'0'||CAST(m.d_depend as varchar(2))...
November 13, 2015 at 1:10 pm
This is certainly an interesting situation. In every drawing I've seen, 3 decimal places are the norm, but I've seen some go out to 4 places. With this...
November 13, 2015 at 1:04 pm
Generally speaking, any time you have a function calculate something in the predicate of a WHERE clause, the predicate is called non-SARGable. It's because the filter can't be applied...
November 13, 2015 at 12:55 pm
Steve Jones - SSC Editor (11/13/2015)
It's unclear what you've done with the data,...
November 13, 2015 at 12:51 pm
Jeff Moden (11/13/2015)
November 13, 2015 at 12:46 pm
Eirikur Eiriksson (11/13/2015)
Sean Lange (11/13/2015)
Eirikur Eiriksson (11/13/2015)
Sean Lange (11/13/2015)
November 13, 2015 at 12:41 pm
Sean Lange (11/13/2015)
November 13, 2015 at 12:38 pm
I absolutely use schemas and find them quite useful. I use them to separate different types of functionality. For example, the procedures that comprise the ETL portion of...
November 13, 2015 at 12:35 pm
First of all, please tell us that all your columns in your join predicates are of the same data type. Implicit conversion can kill the performance of any query.
You...
November 13, 2015 at 12:28 pm
Luis Cazares (11/13/2015)
BL0B_EATER (11/13/2015)
BrainDonor (11/13/2015)
Now that I've faced the editor...
November 13, 2015 at 9:48 am
No matter what server-level permissions a user has, you should still use two-part naming conventions. It's just good practice and avoids the engine having to do the extra work...
November 13, 2015 at 9:44 am
DonlSimpson (11/12/2015)
anthony.green (11/12/2015)
Ed Wagner (11/12/2015)
BillSadler
Sandler
November 12, 2015 at 9:17 am
Sean Lange (11/12/2015)
Nice question Steve. I knew the answer without thinking about it and realized as the button was being clicked I had the wrong one selected.
Yeah, I clicked AS...
November 12, 2015 at 9:16 am
Sean Lange (11/12/2015)
Jack Corbett (11/12/2015)
Sean Lange (11/12/2015)
Brandie Tarvin (11/12/2015)
Sean Lange (11/12/2015)
djj (11/12/2015)
Grant Fritchey (11/12/2015)
November 12, 2015 at 9:14 am
BrainDonor (11/12/2015)
GilaMonster (11/12/2015)
BrainDonor (11/12/2015)
I see a lot of customers who register email addresses that are unique for this site.
You can also do things like
myname+sitename@<domain> (or maybe the other way around)....
November 12, 2015 at 6:40 am
Viewing 15 posts - 4,711 through 4,725 (of 9,399 total)