Viewing 15 posts - 31 through 45 (of 291 total)
First what is prompting the need for the upgrade? Unless the Enterprise edition has some feature lacking in the Standard Edition (Partitioning, Indexed Views, etc) that you require or...
October 12, 2007 at 6:31 am
Usually installing 2005 after 2000 does not cause problems, however installing 2000 (or just the tools) after 2005 has been installed is known to create problems "sometimes". Recommend trying...
October 9, 2007 at 8:36 am
/*
I'm not sure I really understood what you were trying to do but let me take a guess and see if
I can point you in the right direction.
*/
--Lets assume you...
September 28, 2007 at 7:07 am
Not sure what you mean by "Step by Step". Each situation is unique.
In the event of a server crash then more than one database is involved and...
September 27, 2007 at 12:04 pm
Site looks great. Kudo's to everyone involved. I had about a day learning curve to get comfortable with where things are and how they work.
Ref the Posted Time...
September 25, 2007 at 12:26 pm
The most likely culprit is the internal location of the data files which still point to their original location. If the instance you backed up from is still running...
September 25, 2007 at 11:13 am
There is probably an easier way to do this but just off the top of my head this would work:
select
case when abs(datediff(second, (select max(somedate) from dbo.jbmtest where somedate <=...
September 21, 2007 at 1:35 pm
Based on the information provided I don't see any reason not to have the [PartListId] column in the table and allow it to be null since it is not always...
September 13, 2007 at 9:52 am
While 28 million records is a large table I've seen larger. Not knowing your enviornment means most advise you get will be fairly generic. But some things to consider:
1. Review...
September 13, 2007 at 8:38 am
I wasn't criticizing, it was a neat solution. I have now run all three methods against two tables with 1,000,000 records of random data in each table in a single...
August 30, 2007 at 9:34 am
Trying to follow the logic in my head just made it hurt, so I did it in Management Studio. I then compared the actual execution plans agains ten rows of...
August 30, 2007 at 8:31 am
Oops! sorry didn't pay attention to the where clause. Joins are better then sub-selects under most circumstances. Thats what I get for not...
August 30, 2007 at 7:04 am
Actually the left join will return all the rows that have matching records in the second table, not the missing records. You pretty much have to go with the not...
August 30, 2007 at 6:56 am
Yes the trigger executes within the transaction of the original insert, so any error that prevents the "Commit" statement from running results in all work being rolledback.
You can easily test...
August 29, 2007 at 9:35 am
Oops! You do need to check for the non-zero value otherwise you end up over writting that value with a +1. add the following where clause to the insert into...
August 29, 2007 at 9:24 am
Viewing 15 posts - 31 through 45 (of 291 total)