Viewing 15 posts - 1,516 through 1,530 (of 2,010 total)
Yeah I was contemplating using a couple of hundred feet of black hose strung across my roof with a small pump to get the circulation going then letting gravity do...
August 28, 2008 at 8:34 am
I can't find it now, but I remember Steve mentioning a company working on technology a year or 2 ago that was developing Wind Turbines that spun horizontally instead of...
August 28, 2008 at 7:18 am
Unfortunately I'm in somewhat of the same boat, living in central Pennsylvania, we don't get much wind and the days get too short in the winter for solar (although
I'm...
August 28, 2008 at 6:08 am
Is the Canshrink property set to False by chance?
August 15, 2008 at 7:58 am
Scratch that... I just realized you were using Express... According tot he below you can't use database mail with SQL express...
August 15, 2008 at 7:12 am
Have a look at the following and see if they point you in the right direction...
http://www.mssqltips.com/tip.asp?tip=1100
http://www.databasejournal.com/features/mssql/article.php/3626056
-Luke.
August 15, 2008 at 7:10 am
Yeah I've used a similar technique often, allowing my users to choose between a summary or detail view of certain reports that didn't lend themselves to drilling all that well....
August 15, 2008 at 7:04 am
For us to be better able to help you, you'll need to give us some DDL, some sample data and the like. Otherwise we'd just be taking wild stabs...
August 15, 2008 at 6:52 am
No chance you've got a bad memory module that the OS is having to compensate for is there?
July 29, 2008 at 1:41 pm
no chance you can do it like so....
--Setting up test data
CREATE TABLE #tmp (
empID INT,
Salary INT,
ModDate DATETIME,
Currentsalaray BIT)
INSERT INTO #tmp
SELECT 1,100,'4/08/2007',''
UNION
SELECT 1,100,'4/08/2008',1
UNION
SELECT 2,200,'4/08/2006',''
UNION
SELECT 2,200,'4/08/2005',1
UNION
SELECT 2,200,'4/08/2004',''
--Doing the update
UPDATE t1
SET [Salary] =...
July 29, 2008 at 1:33 pm
What do you mean you took a backup from the VM machine tot he other one? did you do a bare metal restore from the VM or did you...
July 29, 2008 at 1:12 pm
The optimizer will process things differently on different hardware. Additionally it may select a different execution plan for the same query on the same hardware depending on the amount...
July 29, 2008 at 12:37 pm
Michael Earl (7/15/2008)
I guess I would like to see some relatively simple, expandable tools included.
I'd second this as I think it would not only help with bits of code to...
July 15, 2008 at 6:27 am
As some have stated above, I believe certifications are a way to separate yourself from others. They're no the only way, perhaps you separate yourself from others by having...
July 3, 2008 at 8:22 am
Viewing 15 posts - 1,516 through 1,530 (of 2,010 total)