Viewing 15 posts - 1,891 through 1,905 (of 3,011 total)
Have you considered boot from SAN? Windows 200 and 2003 support it, so it is really just a matter of finding a SAN vendor that supports it at the...
March 24, 2009 at 9:48 pm
You cannot use an Exchange server email alias.
Reporting services uses only SMTP format email addresses, so it must be in the form name@company.com
March 24, 2009 at 6:25 pm
If you reindex the tables in the database with a maintenance plan job, the database data file has to be large enough to hold all the data, plus enough extra...
March 24, 2009 at 6:03 pm
Mh (3/24/2009)
This gives all the columns from table1 and table2, I only need the ones with differences. Thanks.
How would you like to see the output, considering that all rows in...
March 24, 2009 at 5:43 pm
If you have a need for it, the function on this link generates a very complete (around 60 columns) result set for loading a Date Dimension table.
Date Table Function F_TABLE_DATE
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61519
Other...
March 24, 2009 at 5:19 pm
I am reposting various methods for start of time periods that I originally posted on the links below.
Start of Time Period Functions
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=64755
Function F_START_OF_WEEK to find the first day of the...
March 24, 2009 at 3:02 pm
Jeffrey Williams (3/23/2009)
I was hoping you might try and get past the marketing hype and actually take a look at the product itself. One of the nice features in...
March 23, 2009 at 5:13 pm
steve dassin (3/22/2009)
Michael Valentine Jones (3/16/2009)
it didn't seem to answer...
March 23, 2009 at 5:08 pm
Why did you post a duplicate thread? That just makes people mad.
Duplicate
http://www.sqlservercentral.com/Forums/Topic681945-338-1.aspx
And I see now that you deleted the original post after people had commented, making it hard to...
March 23, 2009 at 4:45 pm
Why not at least produce the year and month in a sortable form?
select YearMonth = convert(varchar(7),getdate(),121)
Results:
[font="Courier New"]YearMonth
---------
2009-03[/font]
I have links to a lot of info about working with Date/Time...
March 23, 2009 at 4:41 pm
I have been having problems with "Posts since my last visit".
There have been a few times in the last few weeks where posts that I made never showed up on...
March 23, 2009 at 3:20 pm
Do you not have a column named Date like you showed in your original query? If not, you will have to fill in the correct column name.
You have unbalanced...
March 23, 2009 at 2:28 pm
Barkingdog (3/23/2009)
...3. Each database has a single "service" (non-user) account that accesses it. Instead of making it dbo (as was done in the past) I want to give that...
March 23, 2009 at 2:09 pm
else datediff (day,enterdate,leavedate) end as 'totaldays'
or just do:
select datediff (day,enterdate,coalesce(leavedate,[date])) as 'totaldays'
March 23, 2009 at 1:38 pm
Viewing 15 posts - 1,891 through 1,905 (of 3,011 total)