Viewing 15 posts - 19,921 through 19,935 (of 26,484 total)
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
You'll have to excuse me, but I'm much more of a visual person, could you show us the various forms the query could take based on the various parameters passed?
July 6, 2009 at 10:07 pm
What application are you tracing? There are several third-party applications that use server-side cursors in this fashion, one such application is PeopleSoft.
July 6, 2009 at 8:53 pm
I'm having a little trouble visualize what you are attempting to accomplish, and I have looked at this several times over the past week. If you could provide the...
July 6, 2009 at 8:49 pm
Here is an alternative solution. I added an additional column to show you what was being returned.
declare @customers table (cus_id int);
declare @orders table (cus_id int, order_date datetime);
insert into @customers...
July 6, 2009 at 8:42 pm
Database Mail is not supported in the Express Edition, nor is SQL Server Agent.
July 6, 2009 at 8:30 pm
Viewing 15 posts - 19,921 through 19,935 (of 26,484 total)