Viewing 15 posts - 631 through 645 (of 1,413 total)
A one-to-one relationship means that there is one row in table Sarah_1 that matches one row in Sarah_2. If there is a one-to-many relationship, e.g. one row in Sarah_1 with...
June 27, 2005 at 7:05 am
To list extended properties you can use fn_listextendedproperty instead of querying system tables though. And like I mentioned above, if you want to see them in EM then the special...
June 27, 2005 at 6:01 am
Do you mean something like this:
CREATE TABLE foo (a int NOT NULL, b int NOT NULL)
CREATE TABLE bar (a int NOT NULL, c int NOT NULL)
GO
INSERT INTO foo VALUES (1,...
June 27, 2005 at 5:57 am
Please do not cross-post questions to different forums. We read all of them.
Continue the discussion in http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=194238.
June 27, 2005 at 5:50 am
Please do not cross-post questions to different forums. We read all of them.
Continue the discussion in http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=194238.
June 27, 2005 at 5:50 am
Please do not cross-post questions to different forums. We read all of them.
Continue the discussion in http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=194238.
June 27, 2005 at 5:50 am
I have to store at least 2.5 M files of 10KB monthly and I have to keep the data for 10 years
It seems to me that performance is not the...
June 27, 2005 at 5:48 am
What are you using this for? The design seems very strange. First, having a master table referencing child table(s) seems strange. But referencing one of three tables is not possible,...
June 27, 2005 at 4:59 am
Take a look at extended properties in Books Online. These are how Enterprise Manager manages the description property. The property should be called MS_Description to show up in Enterprise Manager.
June 27, 2005 at 4:49 am
Aha, then you have not installed SQL Server 2005 Developer Edition CTP. You have installed the Express Edition, which is the replacement for MSDE (SQL Server 2000 Desktop Edition). Although...
June 16, 2005 at 3:17 am
Np, happy to help. And in SQL Server 2005, it is even easier:
SELECT OBJECT_NAME(object_id) AS tablename
, [name] AS indexname
, is_unique
FROM sys.indexes
The new catalog views for metadata are really great with...
June 15, 2005 at 3:09 pm
You should still set a strong password for sa, since all that is required is for someone that has access to the registry to change the key I mentioned above...
June 15, 2005 at 3:03 pm
I am not sure you should be using sp_OA* at all, they can easily cause a lot of harm to your system. But I do not really understand what you...
June 15, 2005 at 3:00 pm
DBCC USEROPTIONS
will return a resultset with two columns, the first showing names of different SET options and the second with the current value. One of the rows will have...
June 15, 2005 at 2:55 pm
In SQL Server 2005, Enterprise Manager and Query Analyzer has been replaced by a single application called SQL Server Management Studio. Do you not have this item in you start...
June 15, 2005 at 2:45 pm
Viewing 15 posts - 631 through 645 (of 1,413 total)