Viewing 15 posts - 631 through 645 (of 683 total)
The only problem with doing this from SQL Server is that if the SQL Server service is the service that is not running then how is the email ever going...
November 29, 2005 at 4:31 am
That is correct.
Boyce\Codd normal form is also known as Strong Third Normal Form and is an enhancement on normal form.
The very article that the question uses as a reference artcile...
September 23, 2005 at 5:52 am
I see where the problem is. The White Space only relates to white space in between tags. So,
DECLARE @var XML
SET @var = '<root> <a> <b>Data b</b> </a> </root>'
SELECT @var
The above...
September 15, 2005 at 8:20 am
I'm a bit confused. (A) does give the correct answer but so does (B).
You don't need to perform any kind of convert function to preserve the white space. If you...
September 15, 2005 at 2:10 am
Yeah, I'm aware it's going to be gone after the next release.
I'm currently working in a funny environment where most of the live SQL Servers are behind several firewalls and...
August 15, 2005 at 3:47 pm
Thanks for the reply. I guess I will just stick to using xp_readmail. There's not much point writing a CLR procedure when xp_readmail will work - at least until SQL...
August 15, 2005 at 3:27 pm
Nanda,
what part are you interested in knowing more about?
bcp is a command line utility that enables you to import or export sql server data to/from text files (or in the...
August 10, 2005 at 10:04 am
Tell me about it.
We've got a SQL Server 2005 testing environment and I've already being using that for this same XML solution. The problem is that after using it in...
August 10, 2005 at 10:00 am
That's perfect Remi.
Exactly what I wanted. I use the objectproperty function quite a bit and I didn't even think to look there...
August 4, 2005 at 7:19 am
I found the problem. There is a permission called [View Definition]. I had to give my user [View Definition] permissions on every table in the database.
Now, a select * from...
July 15, 2005 at 7:20 am
I think I've found what the problem is.....
if the user does not have any permissions on the tables within the database, then information_schema.tables will not return any results.
I gave my...
July 15, 2005 at 7:03 am
Ok, so how do I give my user the rights to view all of the tables in the current database?
As it stands, my user can do:
use pubs
select * from information_schema.tables
The...
July 15, 2005 at 6:59 am
Ok, maybe I'm going about this the wrong way.
I want my user to be able to do a select * from information_schema.tables in a database so that the user can...
July 15, 2005 at 6:33 am
You could use two triggers, one insert and one update trigger.
Alternatively, check the deleted table if you want to see whether the record has been updated.
An update operation consists of...
June 14, 2005 at 4:43 am
Viewing 15 posts - 631 through 645 (of 683 total)