Viewing 15 posts - 12,016 through 12,030 (of 14,953 total)
GilaMonster (9/9/2008)
GSquared (9/9/2008)
I have this horrible thought about SQL in spandex stuck in my head now.Could be worse. Could be a SQL consultant in spandex....
Actually, one (and only...
September 10, 2008 at 12:24 pm
If you look at the data on failover clustering in Books Online/MSDN, you'll note that there is a long list of requirements. For one, the disk drives have to...
September 10, 2008 at 11:54 am
When you say "it doesn't work", do you mean you get an error message, or you get zero rows of data, or something else?
September 10, 2008 at 11:45 am
The second solution, the one from the PM, is a triangular join.
Ran it on the same table and data that I just ran my solution on: 172 milliseconds...
September 10, 2008 at 11:43 am
No, that's not a triangular join. It's a linear join. No RBAR in it.
I just tested it on a copy of your table with an index on DateValue,...
September 10, 2008 at 11:38 am
The first thing I would do is break the proc up into smaller procs and a master proc that calls each smaller proc in sequence. That will make the...
September 10, 2008 at 7:33 am
Text data type stores in an odd way. I don't think it shrinks once it's been allocated.
Edit: varchar(max) works much better, but you can't use that in compat(80).
September 10, 2008 at 7:11 am
I don't think there's a standard reference.
What I've seen, when I've seen it, has been:
int
tint
sint
bint
dtm
sdtm
vc
nvc
char
nchar
dec
num
flt
I don't use these, but they're what I've seen someone else use.
September 10, 2008 at 7:09 am
In my prior job, I was on hourly, and if I had to answer a work-related call or e-mail, it went on the clock. I just had to e-mail...
September 9, 2008 at 1:23 pm
Very interesting question, but mainly because I never realized that SQL 2008 had "colletors" in it.
In case anyone is wondering, a "colletor" is: "a multicellular trichome of a leaf or...
September 9, 2008 at 1:14 pm
Check your log files in a log parser (ApexSQL has one of those, so does Lumigent). The shrink file command should be in there, and it will have data...
September 9, 2008 at 1:04 pm
They're stored as hex. You could build a converter to convert to binary, but there isn't one in SQL that I know of.
September 9, 2008 at 1:02 pm
For tables that often need to be queried on time, without date, I've found that calculated columns (generally with an index on them) is a great solution. Keep the...
September 9, 2008 at 12:59 pm
Viewing 15 posts - 12,016 through 12,030 (of 14,953 total)