Viewing 6 posts - 76 through 81 (of 81 total)
Well, here's the behaviour I'm seeing. I created a view, using the information that you provided. I then attempted to delete a single row from that view using Query Analyzer....
September 5, 2001 at 2:23 pm
How are you getting the ProductName column? You'd have to do a join between Order Details table and the Product table; correct? Unless your view is in turn accessing another...
September 4, 2001 at 3:02 pm
- Each node keeps its own binaries on its own local disks.
- Quorum goes on a shared disk.
- Any data that is to be failed-over, e.g. Database data files, go...
August 21, 2001 at 11:12 am
Regarding bit columns:
Bit columns can, but won't necessarily save you space. Although SQL Server can fit 8 bit columns into a single byte, my understanding is that if you have...
August 9, 2001 at 5:21 pm
There's an easier way to do it. Use a statement like this:
--
SELECT dbo.tblUser.iUserID,
dbo.tblCampaign.iCampaignID,
dbo.tblCall.sBTN,
...
August 9, 2001 at 5:02 pm
It really depends on whether or not there are other columns in the table beside the two columns that are used in the index. If there are other columns in...
August 9, 2001 at 4:53 pm
Viewing 6 posts - 76 through 81 (of 81 total)