Viewing 10 posts - 691 through 700 (of 700 total)
I think a better way of approaching this is to remove the HTML creation from the stored procedure completely. HTML is usually display-tier stuff.
If you created the email engine, then...
January 12, 2005 at 6:21 am
I've been part of 2 separate SAN purchases at different companies.
Went with the HP (Compaq at the time) MSA 1000 at the first place. It was loads cheaper than the...
December 22, 2004 at 1:15 pm
If you're matching the sample code from the wesite you referred to, then line 12 should look something like this:
Set objXMLDoc = Server.CreateObject("MSXML2.DOMDocument.4.0")
The MSXML2.DOMDocument.4.0 object is part of MSXML 4,...
August 18, 2004 at 12:32 am
So near, but yet so far away
The only thing you need to do to get your statement working is to extend...
May 25, 2004 at 11:10 pm
Take a look at 'Partitioned Views' in SQL Server Books OnLine.
Basically, you'll horizontally split your big table up into smaller tables, and then build a view that selects all the...
February 16, 2004 at 10:41 am
One of your params is off (just a typo)... try changing:
[....]
<IV00101
[....]
ALTITEM2="#ALTITEM2"
to:
ALTITEM2="$ALTITEM2"
January 8, 2004 at 11:04 pm
We were getting the exact same access violation error/service restart several times over the last few weeks.
We were able to trace it to some large one-shot ad-hoc OPENQUERYs...
December 26, 2003 at 2:14 pm
I admit this answer doesn't directly answer your question - how to add a sequence number directly into a SELECT statement, but it does provide that result.
This may not be...
December 8, 2003 at 8:32 pm
Take a look at sp_repladdcolumn in Books Online.
* Warning: Books Online gives the wrong parameters for this sp - it misses one in the middle.
You can...
November 29, 2003 at 10:28 pm
Also note that you're going to cough up half your physical RAM to the OS. If your SQL box has 4GB of RAM on Win2000 Server, then applications can...
November 18, 2003 at 5:12 pm
Viewing 10 posts - 691 through 700 (of 700 total)