Viewing 15 posts - 46 through 60 (of 73 total)
The primary key is on col1 and col3. The check constraint is on col1 and col3 is unique in t1. Now, a value in col3 in t1 can...
March 11, 2009 at 8:57 am
For t2, col1 = 85. For t3, col1 = 86. So the code looks like:
ALTER TABLE [dbo].[t2] WITH CHECK ADD CONSTRAINT [CK_t2] CHECK (([col1]=(85)))
ALTER TABLE...
March 11, 2009 at 8:46 am
Lynn,
You are absolutely right, my apologies. What I should have asked was 'Has anyone had a similar experience?' Now, here are the details:
CREATE TABLE t1(
[col1] [int] NOT NULL,
[col2]...
March 10, 2009 at 3:51 pm
Hi All,
I've been playing with a partitioned view I created all day long. After the initial setup, the query execution plans looked great, but actual query time was just...
March 10, 2009 at 3:16 pm
Thanks all for the replies. I would be using the partitioned view using tables on the same disk. I've read also that using separate filegroups on the same...
March 2, 2009 at 1:42 pm
Alright, so I was being a bonehead and looking at users, not logins. I see exactly what you're saying about the properties showing whether it's windows auth vs. SQL...
February 12, 2009 at 2:21 pm
Thanks Jeffrey,
Where at in the properties does it explicitly say SQL Auth vs. Windows Auth? I'm content knowing that the instance\user implies Windows Auth, I'd just like to get...
February 12, 2009 at 2:19 pm
Hi,
Thanks for that link! Going through that information I understand now why building/rebuilding the clustered index can have such a big impact. I don't believe my issue is...
February 4, 2009 at 9:34 am
Hi,
Thanks for that DBCC command. I just ran it successfully and reran the sp_spaceused SP and I see pretty much what I saw prior to running the DBCC command....
February 4, 2009 at 9:00 am
Thanks for those links Andrew. The first one is the info that I've been trying to go through.
It says that there are essentially three steps and I...
December 10, 2008 at 9:03 am
Have you tried using Profiler to get a picture of what's going on in the database?
I had similar timeouts previously and in my case, I was able to...
December 9, 2008 at 5:20 pm
Ahh premature confidence...
I'm having difficulties setting the partner servers via "ALTER DATABASE [db] SET PARTNER =" command. Does the "GRANT CONNECT..." command impact the "ALTER DATABASE [db] SET PARTNER="...
December 9, 2008 at 4:50 pm
Hi All,
I checked around my shop here and found that data is not being encrypted currently (or ever) using DbMKs so FORCE REGENERATE of the SMK would not pose a...
December 9, 2008 at 2:56 pm
Thanks for the quick reply Andrew!
On your reply you say "CREATE MASTER KEY ENCRYPTION BY PASSWORD = ' ';"
When I run this on my DB to be mirrored, I get...
December 9, 2008 at 1:59 pm
Viewing 15 posts - 46 through 60 (of 73 total)