Viewing 15 posts - 2,521 through 2,535 (of 3,008 total)
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
I would only split the tables under certain conditions, like one of the following:
1. If there was a row in tblDistributorStats for only some of the rows in tblDistributor.
2. If...
January 16, 2008 at 9:04 am
ALZDBA (1/16/2008)
you may want to add a computed_column of the datetime datatype and put an index on it.
check BOL
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/8d17ac9c-f3af-4bbb-9cc1-5cf647e994c4.htm
create table...
January 16, 2008 at 8:04 am
If you have to defrag a heap (with downtime allowed), and you don't want to add a clustered index, you can:
1. Rename the table to prevent access to it.
2. Create...
January 15, 2008 at 6:23 pm
Viewing 15 posts - 2,521 through 2,535 (of 3,008 total)