Viewing 15 posts - 2,461 through 2,475 (of 6,486 total)
If you've installed sP2 and have the reports, the "Schema Changes History" is a visual version of that function as well.
October 6, 2008 at 3:13 pm
October 6, 2008 at 10:28 am
From the "how to license SQL Server" FAQ:
Q. What exactly is a processor license and how does it work?
A. A processor license gives you the right to install any...
October 6, 2008 at 10:23 am
In 2005, xp_sendmail should be avoided. It's been replaced by sp_sendDBMail, which tends to operate much better (it's SMTP-based, so doesn't required an outlook client to be installed and...
October 6, 2008 at 9:00 am
Yup - Vladan's right. Missed a few moving parts there.
thanks for the assist!:D
October 6, 2008 at 8:32 am
The correlated sub-query can suffer depending on how big the table is. You might care to try a derived table setup:
SELECT a.[Invoice no], a.[invoice Amount], (a.[invoice Amount] - isnull(b_sum.TotPayment,0))
FROM...
October 4, 2008 at 7:18 pm
Rich96 (10/4/2008)
That did it. Thanks Matt.. 5 stars.I finally found a table of characters.. if anyone is interested.
Glad that did the trick! thanks for the feedback
October 4, 2008 at 6:52 pm
On the other hand - you're apparently trying to put a character value into a column that is an integer type, so that will NEVER happen. Avoiding that would allow...
October 3, 2008 at 8:28 pm
As it is - that's a batch-terminating error. Meaning - it pretty much drops out right then and there and never goes past it.
In 2000, the only way I...
October 3, 2008 at 8:26 pm
It looks to be ASCII code 168. Run your REPLACE code with CHAR(168) as what you're looking for.
As in - (using a square bracket as the replacement)
select replace('YAHOO¨ TRAVEL',char(168),']')
October 3, 2008 at 6:24 pm
Jeff Moden (10/3/2008)
I just...
October 3, 2008 at 5:48 pm
How do the rows in table2 match up to rows in table3, match up to rows in table4?
You need some type of join between the 3 tables, but you're not...
October 3, 2008 at 3:36 pm
If you're going to schedule it - perhaps just let the job scheduler send the e-mail. Xp_sendMail can get really funky, since it won't release until the e-mail is...
October 3, 2008 at 3:33 pm
A web service you pass parameters to, which then builds the query or executes the query on the remote end is a viable option. or - a CLR asembly....
October 3, 2008 at 2:17 pm
This is a "running count". A high-speed version of what you'd need to do is described in Jeff's article below:
http://www.sqlservercentral.com/articles/Advanced+Querying/61716/%5B/url%5D
Like you've already mentioned - it's not a set-based solution...
October 3, 2008 at 2:11 pm
Viewing 15 posts - 2,461 through 2,475 (of 6,486 total)