Viewing 15 posts - 1,876 through 1,890 (of 3,011 total)
Instead of posting a bunch of code that doesn't work, please explain exactly what you want to do.
It would also help it you posted the structure of the table, some...
March 28, 2009 at 1:37 pm
Jeff (3/27/2009)
Hi Michael,do you have a referernce/link to that documentation? I would love to pass along to our vendor.
thanks. jeff
SQL Server 2005 Books Online
http://msdn.microsoft.com/en-us/library/ms187658(SQL.90).aspx
Maintenance Plans
"...Maintenance plans only run against databases...
March 27, 2009 at 5:27 pm
andrewd.smith (3/27/2009)
I'm a littel disappointed that no one wanted to play.
I think this is in the spirit of that thread. I'm quite pleased to have found a new use for...
March 27, 2009 at 5:11 pm
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
Viewing 15 posts - 1,876 through 1,890 (of 3,011 total)