Viewing 15 posts - 31 through 45 (of 72 total)
I am not an expert in this subject but my guess would be how about creating covering index.
November 18, 2008 at 9:43 am
Try this:
Provided by Michelle F. Ufford:
Alter Table dbo.yourTableName
Add Constraint PK_yourTableName
Primary Key (column1, column2) -- ensure one of these is the partitioning key
With (MaxDop = 1); --...
November 18, 2008 at 9:18 am
Yup follow what's been suggested here. MERGE would be your choice.
November 18, 2008 at 9:05 am
Software comes with the server, you have to ask your IT ppl to get you that software, but still I guess best bet would be to ask them about all...
November 18, 2008 at 9:00 am
You can always try to restore 2k database to 2k5 in your test environment then see if everything works well as required then you are all set, but after you...
November 17, 2008 at 9:16 pm
... If that is correct, how do I change one of my drive to RAID 1 from RAID 5?
How can I check my [Drives] RAID information on server?
Thanks.
You have to...
November 17, 2008 at 4:29 pm
Try this:
EXECUTE msdb.dbo.sysmail_help_status_sp ;
Hope this helps.
November 17, 2008 at 4:17 pm
Ok, first you need to run SQL Server Upgrade Advisor, to find out what problems you might face during migration and fix those problems. you can download it from Microsoft's...
November 17, 2008 at 3:31 pm
Thanks Michelle F. Ufford.
I implemented Partition table but wasn't able to get primary key on a column but with the help of your script now I have primary key...
November 17, 2008 at 10:12 am
Thanks Jeffrey. That's how I figured it out when I dropped the object using default trace files created by the SQL Server.
November 17, 2008 at 10:06 am
Thanks for the reply Greg.
November 17, 2008 at 9:28 am
Did you create unique clustered index on the columns which were mentioned in the composite primary key? If you did then I guess You have created unique constraint and I...
November 16, 2008 at 10:16 am
In which case boyh options are disabled?
when you are doing installation on the machine if IIS is not installed then both options would be disabled.
November 8, 2008 at 7:49 pm
Server name is SMTP server name. If you are using gmail then server name would be smtp.gmail.com
November 8, 2008 at 7:42 pm
Viewing 15 posts - 31 through 45 (of 72 total)