Viewing 15 posts - 76 through 90 (of 462 total)
Beside the fact that the ItaniumII processor is internally faster as the X86 compatible Xeons, you can realize the real power of the 64 bit servers when you use (much?) over...
July 29, 2005 at 7:26 am
The data is originally exported from a DB2 database somewhere in Germany any sent to our site during the night. The export itself should not have any issues.
The operators have...
July 29, 2005 at 1:24 am
You're great Hans!
I have rearanged the data and it works now!
Of course I've got some problems because I've 2 columns where the data...
July 28, 2005 at 9:34 am
I know about this problem.
That's why I have speicified in my problem description that I HAVE MODIFIED the registry entry to 0, which based on the MS knowledge base article...
July 28, 2005 at 8:08 am
What you have to know is that SQLServer is storing datetime values as a kind of float. The integer part is the number of day since January 1, 1753 (for...
July 26, 2005 at 2:07 am
Or you can use the WITH ROWLOCK table hint in your update statement but be aware: It will hinder the performance!
Especially if, as are are stating, you are upgrading nearly...
July 26, 2005 at 1:56 am
Anyhow, don't forget that a temp table "local" to the session who creates the temp table.
That's why you can create temp tables with the same name in different sessions (like...
July 26, 2005 at 1:50 am
By using alter table you cannot placethe new column in a particular position, but there is a workaround (how EM is doing as well) you create a new table with...
July 21, 2005 at 3:08 am
As Merril has stated if you want to show the month even if you have no data within your table for that particular month, by design the only way is to...
July 21, 2005 at 3:04 am
Based on your example it seems that the length of MyValue is somehow determined by the first value in the list (in case of 'Red' is 3, in case of...
July 20, 2005 at 2:33 am
I still belive that the problem was HW (or logical volume) related.
By adding a clustered index you have moved all data pages to a new location.
I think that you could have...
July 19, 2005 at 8:00 am
if you are constructing a string based on your #url.prodID, #form.value1#
variables then sending that string to the server at once then it looks fine (but don't forget the correct apostophes...
July 19, 2005 at 7:46 am
insert into mytable (col1, col2, col3)
select @var11, @var12, @var13
union all
select @var21, @var22, @var23
union all
select @var31, @var32, @var33
...
July 19, 2005 at 2:11 am
I would like to add my 2 cents as well.
We have got a problem something similar to that. It came out that the problem was HW (disk) related. Fortunatly we...
July 18, 2005 at 5:53 am
The answer is: it depends.
If most of your queries are using just a subset of columns then it makes sense to split the table into several smaller tables. But if...
July 15, 2005 at 2:08 am
Viewing 15 posts - 76 through 90 (of 462 total)