Viewing 15 posts - 1,201 through 1,215 (of 1,412 total)
quote:
I don't think there's much difference between the two, because SQL Server actually creates a clustered index to enforce a clustered unique...
March 20, 2003 at 11:31 am
You said the server has 3.6 GB RAM.If SQL uses 1.6 GB then Windows would have 2 GB, or am I missing something? I would advice you to stick with...
March 20, 2003 at 11:29 am
Although there are ways to simulate arrays in SQL Server, the best advice and solution imho would be to think about whether you really need an array. Often you are...
March 20, 2003 at 11:24 am
create view mostrecent
as
select shipmentid, status, date
from shipments a
inner join (
select shipmentid, max(date) as maxdate from shipments
group by shipmentid
) b
on a.shipmentid = b.shipmentid
and...
March 20, 2003 at 11:14 am
The solution you describe sounds good. If you want to avoid the join you could of course use a column "prodCondition" with a check constraint to make sure that only...
March 20, 2003 at 11:09 am
March 20, 2003 at 11:06 am
March 20, 2003 at 5:11 am
quote:
well Oracle runs on UNIX ... that's the major difference.MS SQL Server doesn't.
If only they had been ordered to be split from...
March 20, 2003 at 1:26 am
Aha, you only installed the client tools? Then you need the database engine as well, and you are quite right about Enterprise Edition, you must use Devleoper Edition on XP...
March 20, 2003 at 1:11 am
Why do you not want to change it? The float data type is for storing approximations and uses scientific notation to store the values. You will never be able to...
March 20, 2003 at 1:07 am
Then you should not use float, use something like decimal(9,2) instead.
--
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
March 19, 2003 at 3:15 pm
Tom, very nice. Didn't think of that at all. Remember though that sp_addalias is only there for backward-compatibility so it might be removed.
--
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
March 19, 2003 at 5:30 am
quote:
It is already explicitly sorted 🙂
Just to continue this interesting thread, here is what Dr...
March 19, 2003 at 1:44 am
quote:
You could make the developers owners of your development DB and eliminate this maintenance need for the future.
March 19, 2003 at 1:32 am
As mromm said, SQL Server is only concerned with what login account was used to gain access to SQL Server, therefore you can only see that he is logged in...
March 19, 2003 at 1:23 am
Viewing 15 posts - 1,201 through 1,215 (of 1,412 total)