Viewing 15 posts - 2,521 through 2,535 (of 15,381 total)
kyagi.jo (8/7/2015)
August 7, 2015 at 8:42 am
ShorePatrol (8/7/2015)
I have some indexes over 30% fragmented. Some are much more...
I have a job maintenance plan to "re-organize" indexes every Sunday on all databases. I didn't know if...
August 7, 2015 at 8:25 am
Thanks for the question. Good one to end the week with.
August 7, 2015 at 8:20 am
j-1064772 (8/7/2015)
August 7, 2015 at 8:08 am
kyagi.jo (8/7/2015)
I have a problem at the moment, where the client wants to be able to type in a custom algebraic formula with add/minus operators, and then to have...
August 7, 2015 at 7:55 am
ChrisM@Work (8/7/2015)
Sean Lange (8/7/2015)
j-1064772 (8/7/2015)
Move to the top, before any DML the following:[/font]
[font="Courier New"]CREATE...
August 7, 2015 at 7:53 am
Lowell wrote up a script to do this sort of thing in the past. I will ping him and see if he can post script in here for that since...
August 7, 2015 at 7:49 am
j-1064772 (8/7/2015)
Move to the top, before any DML the following:[/font]
[font="Courier New"]CREATE TABLE #results(...[/font]
[font="Comic Sans...
August 7, 2015 at 7:45 am
Andrew P (8/6/2015)
August 7, 2015 at 7:43 am
WhiteLotus (8/6/2015)
August 7, 2015 at 7:24 am
lsalih (8/6/2015)
Sean, wow so simple! I like to code but sometimes I not thinking logic 🙂 Great, it worked 🙂THANKS.
Great. Glad that worked for and thanks for letting me...
August 6, 2015 at 12:08 pm
If I understand the problem correctly this should work.
select *
, case when DEPT in (102, 103) then SEC1 else isnull(SEC1, 'Y') end as NewSEC1
, ISNULL(SEC2, 'Y') as NewSEC2
from EMP_INFO
where DEPT...
August 6, 2015 at 10:17 am
Lynn Pettis (8/5/2015)
Sean Lange (8/5/2015)
August 5, 2015 at 2:56 pm
GAH!!! Sometimes I hate having to work with so many different versions of sql all the time. I have been beating my head against the wall trying to write a...
August 5, 2015 at 1:49 pm
Ed Wagner (8/5/2015)
Just don't forget to drop the database when the interview is over. 😉
Or just create the objects in tempdb. :hehe:
August 5, 2015 at 1:09 pm
Viewing 15 posts - 2,521 through 2,535 (of 15,381 total)