Viewing 15 posts - 496 through 510 (of 1,413 total)
This is storing one field for one purpose, in fact it's a much more specialized purpose than defining a binary field in the table.
And how do these fit in to...
August 2, 2005 at 3:45 pm
And that is where I would use 'old fashioned rows' of data.
August 2, 2005 at 3:41 pm
Why not simply store it in a VARBINARY(MAX))?
The job of a DBMS is to preserve the integrity of the database. The only way it can do that is to 'know'...
August 2, 2005 at 3:18 pm
The problem with this approach is that we would be using a relational DBMS (not truly relational, but still) for storing the data, but for some reason not using the...
August 2, 2005 at 3:12 pm
Yes, xp_smtp_sendmail accepts multiple recipients using comma as separator. So do something like:
SELECT @email = COALESCE(@email, '') + emailaddresscolumn + ','
FROM sometable
SET @email = LEFT(@email, LEN(@email) - 1)
exec @rc =...
August 2, 2005 at 11:32 am
Is it a 64-bit program (the xproc)?
August 2, 2005 at 11:27 am
I am not quite sure what you mean, but I think you are looking to script an index. Right? I think you could use sysindexkeys for that information.
August 2, 2005 at 11:25 am
This type of example is exactly the reason why I and many more or 'scared' (or at least concerned) about the CLR Integration in SQL Server 2005. I see absolutely...
August 2, 2005 at 6:49 am
Any idea how to change the way Query Analyzer displays these things?
Tools/Options/Connections. Check 'Use regional settings when displaying currency, number, dates and times' to make QA use whatever you have...
August 2, 2005 at 6:30 am
It's a little bit difficult to understand all that happens since some code is missing, but it seems to me you are creating an instance of the class in the...
August 2, 2005 at 5:19 am
Same here, we moved our slightly smaller 200GB backups using Robocopy. Can't say exactly how much it affected performance, but as I remember it we did not have any CPU...
August 2, 2005 at 5:02 am
is there any query based solution for this type of a situation which retrieves selective fields
I can't think of any. This is normally an issue that should be solved by...
August 2, 2005 at 3:29 am
As far as I am concerned, PASS is the best SQL Server conference to spend your money on. Whether or not you will find it beneficial is of course impossible...
August 2, 2005 at 3:23 am
Aha, now that I re-read the question (after reading noeld's reply) I see where the error is made.
faizjmc: I think you have misunderstood how model is used. All databases...
August 2, 2005 at 3:18 am
Eh, and when my mind got around to finishing that thought (damn those write-ahead threads in my head):
SELECT CONVERT(VARCHAR(10), CAST('20050802' AS DATETIME), 120)
August 2, 2005 at 3:06 am
Viewing 15 posts - 496 through 510 (of 1,413 total)