Viewing 15 posts - 16 through 30 (of 428 total)
I don't believe so. one of the parameters you use in an OPENXML call is the document handle returned by that proc, so you pretty much need to call...
August 31, 2008 at 10:03 pm
that proc basically creates an instance of the DOM on the server. this is a COM object that implements an xml document parser. It's used when you use...
August 31, 2008 at 9:00 am
in software, pretty much anything is possible. The point is that this is not a good idea.
why are you trying to do this? what's the backstory?
August 28, 2008 at 9:52 am
a well designed system does not create database objects on the fly like this.
You can't do what you are trying to do. If someone comes along and...
August 27, 2008 at 11:05 pm
forget about using a trigger for this. use a proc.
August 27, 2008 at 10:35 pm
redgate database tools work for SQL Server only.
I wrote a doc tool that may be of use to you though. It finds dependencies for databases on all major platforms:...
August 13, 2008 at 10:29 am
of course if you have a large column you should use varchar(max)/nvarchar(max)/varbinary(max) as opposed to text/ntext/image. that wasn't the poster's question though.
they asked whether you should prefer varchar(int) compared...
August 13, 2008 at 8:58 am
August 12, 2008 at 11:25 pm
one drawback is that varchar(max) can't form part of a index key.
also it's simply wasteful and inefficient.
when you write a program in C, you don't allocate 2gb of...
August 12, 2008 at 11:23 pm
Atif Sheikh (8/9/2008)
Attribute Category my have the information like 'Demographics', 'School Information', 'Contact Information', etc with its...
August 9, 2008 at 8:35 pm
length of object names does not matter as far as perf is concerned.
August 8, 2008 at 11:01 pm
also, about stuff at home being stolen - if you work from home occasionally (as I do) it's much better to remote in using RDC or similar and do work...
August 5, 2008 at 8:44 am
Viewing 15 posts - 16 through 30 (of 428 total)