Viewing 15 posts - 1,876 through 1,890 (of 3,008 total)
It is not a bug.
The documentation specifically states that databases in 7.0 compatibility mode are not supported by SQL Server maintanance plans.
March 27, 2009 at 12:30 pm
I thought that you could create a database snapshot of a mirror that you could use to run queries.
March 27, 2009 at 10:28 am
I'm a littel disappointed that no one wanted to play.
March 27, 2009 at 9:55 am
Ed Salva (3/27/2009)
never been able to successfully accomplish this, can't seem to get past the...
March 27, 2009 at 9:06 am
select * from information_schema.columns where column_name = 'lname'
March 27, 2009 at 7:53 am
In the spirit of the completely ridiculous, here goes:
SELECT id, CASE WHEN Abs( Sin(Ascii(Reverse ...
March 26, 2009 at 4:23 pm
Use a check constraint on the table for the first rule:
( case when col2 is not null then 1 else 0 end + case when col3 is not null then...
March 26, 2009 at 6:15 am
select WorkTime = convert(varchar(5),dateadd(ss,sum(Work)*3600,0),114)
from
( --Test Data
select Work = 4.75 union all
select Work = 1.50
...
March 25, 2009 at 10:39 pm
george sibbald (3/25/2009)
...Michael, I like the boot from SAN idea, do you do that?. Our intel guys don't seem keen, saying there are performance problems. Seems to me it would...
March 25, 2009 at 10:25 pm
It's best to just set the files to equal size, and to set the growth size equal on each file.
As you add data over time, the files with less data...
March 25, 2009 at 5:08 pm
I try to keep my disagreements with other posters on the level to discussion of the issues and avoid name calling.
Not because I like to take the high road or...
March 24, 2009 at 10:18 pm
How would you like to see the output, considering that all rows in the result set must have the same number of columns and they must have the same datatype?...
March 24, 2009 at 10:00 pm
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
Viewing 15 posts - 1,876 through 1,890 (of 3,008 total)