Viewing 15 posts - 2,326 through 2,340 (of 3,011 total)
Why don't you ask the DBA to explain in detail why this is a good idea, and post what he says on this thread?
May 8, 2008 at 12:38 pm
So how long will it be before Homeland Security requires all air travelers to have an RFID in their ear?
http://www.sciam.com/article.cfm?id=rfid-power
"Now Hitachi, the maker of that chip, is aiming even smaller....
May 8, 2008 at 12:06 pm
Peso (5/7/2008)
SELECTCOUNT(*)
FROMmaster..spt_values AS d
INNER JOINmaster..spt_values AS h ON h.Type = 'p'
WHEREd.Type = 'p'
AND d.Number <= DATEDIFF(DAY, @Date1, @Date2)
AND h.Number BETWEEN 0 AND 23
AND DATEADD(HOUR, h.Number, d.Number + @Date1)...
May 7, 2008 at 8:33 am
This script analyzes the size of all database datafiles on a server in a number of different ways for files size, uses, unused, etc.
Get Server Database File Information
May 5, 2008 at 8:38 am
If you just need a column to be a unique identifier, then you could just add this to your view:
Select
MyUniqueID = newid(),
…Rest of columns…
From
MyView
May 2, 2008 at 4:23 pm
There is no point in not running them every 15 minutes right now. You are just running a bigger job every two hours, instead of a small job every...
May 2, 2008 at 4:16 pm
I recommend doing transaction log backups much more often. I usually set them up to run at least every 15 minutes, 24x7.
This will reduce the amount of data loss...
May 2, 2008 at 3:48 pm
william.ring (5/1/2008)
May 2, 2008 at 10:24 am
It's simpler to do this with a join to a temporary table, and will probably run much faster.
-- declare value pair table
declare @values table (col1 int not null, col2 int...
May 2, 2008 at 3:09 am
The cursor is on a multi-table join, so I am not sure "WHERE CURRENT OF myCursor" can really be used there. I've never tried that so I don't really...
May 1, 2008 at 6:55 pm
This was my favorite solution from the thread Peso linked to.
declare @ int set @=0while @<100begin set @=@+1print left(@,sign(@%3*@%5)*3)+
left('Bizz',4-sign(@%3)*4)+left('Buzz',4-sign(@%5)*4)end
Short and easy to understand 🙂
Here is a link to the...
May 1, 2008 at 4:04 pm
I have seen topics like this about a thousand times on different sites, and have yet to see one where the OP could answer the question “What constitutes a duplicate?”.
Doesn't...
May 1, 2008 at 12:22 pm
John Mitchell (5/1/2008)
...
-- has to be global temp table to be visible to the dynamic SQL
CREATE TABLE ##Temp(col1...
May 1, 2008 at 12:13 pm
Will Summers (5/1/2008)
I showed how their building network using cascaded hubs was a bottle neck. The brute force traffic study showed that the Network Neighborhood browser keep alive packets...
May 1, 2008 at 10:57 am
Jeff Moden (5/1/2008)
Michael Valentine Jones (5/1/2008)
It's probably better to avoid using a reserved word, like INDEX, for a table name.
Or "number" or "sequence" or... that's all part of the reason...
May 1, 2008 at 10:49 am
Viewing 15 posts - 2,326 through 2,340 (of 3,011 total)