Viewing 15 posts - 19,921 through 19,935 (of 26,490 total)
Upper case reminds me too much of COBOL, plus I don't like having to hold the shift key while typing or using the caps lock.
July 7, 2009 at 12:03 pm
Natural Keys vs Surrogate Keys
Here's a battle. I like the idea of using Natural Keys, but sometimes thoses are the best choice as they can change which affects historical...
July 7, 2009 at 12:00 pm
sqlguru (7/7/2009)
Lynn Pettis (7/7/2009)
This is called the Network Model (CODASYL).
Actually, it's not.
The DB automatically creates the foreign keys between the two tables BUT it is not seen by the...
July 7, 2009 at 9:30 am
I like it because you get in and get out as quickly as possible.
July 7, 2009 at 9:26 am
jordon.shaw (7/7/2009)
It is SQL 2005 and I haven't written anything yet.
Okay, but what edition?
July 7, 2009 at 9:23 am
sqlguru (7/7/2009)
Pointer-based foreign keys
The relational model has no place for surrogate keys. When...
July 7, 2009 at 8:56 am
What edition of SQL Server, and what have you written so far to meet your requirements?
July 7, 2009 at 8:47 am
ChandraMohan Nandula (7/7/2009)
I did not find any articles related to sql server 2005 architecture here. Even in the forums when a user ask about the sql...
July 7, 2009 at 8:40 am
I think I'd do it more like this:
declare @NextProductID int;
update dbo.ProductsSequence set
@NextProductID = ProductID = ProductID + 1
from
dbo.ProductSequence with (tablockx)
where
...
July 7, 2009 at 8:35 am
I think he is asking about the naming conventions used for naming the transaction log backup files, but I could be wrong.
July 7, 2009 at 8:24 am
I'm not a zealot, and i don't have any supporting documentation. What I will tell you is that you will get a lot of differing opinions on the matter.
I...
July 7, 2009 at 12:04 am
we still need to see the different scenarios that may be present inthe values provided in the variable.
July 6, 2009 at 11:16 pm
Haven't tried it or fully researched it, but I don't think you can convert an existing table into a partitioned table. If this is possible, I'd love to see...
July 6, 2009 at 10:22 pm
hi_abhay78 (7/6/2009)
http://msdn.microsoft.com/en-us/library/ms165636(SQL.90).aspx
But there is a tweak 🙂
Copy DatabaseMail90.exe, DatabaseMailEngine.dll and DatabaseMailProtocols.dll into the MSSQL\Binn directory and execute below mentioned system...
July 6, 2009 at 10:09 pm
Viewing 15 posts - 19,921 through 19,935 (of 26,490 total)