Viewing 15 posts - 61 through 75 (of 395 total)
Standard to ease your work. by maintaining it, no one can drag you to their own standards. In addtions, Standard are always within your organzation. there is no global set...
October 5, 2005 at 6:00 am
Check this
http://www.sqlservercentral.com/columnists/dasanka/changemanagementinyourdatabase.asp
However, Community does not like this idea. you may read the comments from others as well
October 5, 2005 at 5:51 am
IDERA Diagnostic SQL Manager is a good tool
October 5, 2005 at 5:45 am
Can you please paste the full error here so that it will be easy for all of us
October 5, 2005 at 5:41 am
I think it all depend on your business needs. check this
http://www.microsoft.com/sql/2005/default.mspx and identify what are the suitable features that will suit your business
October 4, 2005 at 6:50 am
Distributed Management Objects
You should have searched the net.
anyway
September 29, 2005 at 1:29 am
my name is nto addict, it is Dinesh Asanka
addict is label given by the site owners
September 20, 2005 at 6:50 am
what about using a cursor
create table temp#
(OrderID int,CustomerId varchar(10))
declare @CustomerId varchar(10)
DECLARE cur_CustomerList CURSOR FOR
SELECT
distinct CustomerId from orders
OPEN cur_CustomerList
FETCH NEXT FROM cur_CustomerList into @CustomerId
WHILE @@FETCH_STATUS = 0
BEGIN
insert into temp#...
September 20, 2005 at 3:54 am
have you select the option of Force restore over exisitng database option
September 19, 2005 at 5:52 am
select top 0 * from <table name>
September 19, 2005 at 5:32 am
after selecting the backup file chekc the log and database path from the second tab of the restore window
September 19, 2005 at 5:16 am
thanks for voting
please vote if you haven't vote
September 19, 2005 at 5:12 am
http://www.sqlservercentral.com/columnists/darjun/deletingduplicaterows.asp
http://www.sqlservercentral.com/columnists/sramakrishnan/deletingduplicaterecords.asp
September 16, 2005 at 6:47 am
Viewing 15 posts - 61 through 75 (of 395 total)