Viewing 15 posts - 2,521 through 2,535 (of 3,011 total)
Jason Shadonix (1/24/2008)
Can you have an operator with...
January 24, 2008 at 5:41 pm
If it is possible that you will not always have 5 colors (maybe they can pick 0, 1, or more colors?), then the following code may be a better solution.
if...
January 24, 2008 at 5:29 pm
zahranym (1/24/2008)
January 24, 2008 at 5:15 pm
I would hope that someone qualified to be "IT Director" would have a good idea what a DBA does and be aware of the reasons to hire or not hire...
January 23, 2008 at 5:55 pm
Use the CREATE TABLE statement to put the table on the desired filegroup.
January 23, 2008 at 5:24 pm
Try using these functions. They're already debugged. 😎
Start of Week Function:
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=47307
End of Week Function:
January 21, 2008 at 4:15 pm
Does this job have a work location?
January 21, 2008 at 10:03 am
Make sure your resume is well written with no misspellings, nonexistent words, obscure acronyms, or chat-speak.
I consider English communication skills a must have for a DBA or developer, and I...
January 19, 2008 at 1:47 am
I would be helpful if you explained what you are trying to do.
January 18, 2008 at 3:49 pm
Jeff Moden (1/18/2008)
...but what does a NULL start date indicate other than something hasn't started?...
Depends on how you use NULL. It could mean does not exist, does not apply,...
January 18, 2008 at 12:33 pm
Select
*
from
MyTable
where
@MyDate > StartDate and @MyDate < EndDate
January 18, 2008 at 9:35 am
Just to flog this topic a little more.
When you are using text stings for dates, you should use the format 'YYYYMMDD HH:MM:SS.MIL'
Example: '20080116 18:01:25.997' (or '20080116' for date only)
This is...
January 16, 2008 at 4:13 pm
Rajan (1/16/2008)
January 16, 2008 at 3:53 pm
It would be helpful if you showed us the code you are using to insert into the tables, and the DDL statements for the tables.
January 16, 2008 at 12:03 pm
This is the simplest way.
use master
alter database MyDatabase set offline with rollback immediate
drop database MyDatabase
January 16, 2008 at 11:57 am
Viewing 15 posts - 2,521 through 2,535 (of 3,011 total)