Viewing 15 posts - 136 through 150 (of 449 total)
It sounds like a many to many relationship.
A "resource" can be assigned to many projects.
A "project" can have many resources assigned to it.
You need to create an intersection table with...
August 3, 2010 at 6:51 am
PaulB-TheOneAndOnly (7/8/2010)
We do have a naming convention that...
July 23, 2010 at 6:51 am
Active - Active
Is when you create a 2nd instance of sql server and the other node as its primary server.
Node1 is running one sql server instance and Node2 is running...
July 22, 2010 at 6:12 am
Yes, see the Books Online
Members of the db_ddladmin fixed database role can run any Data Definition Language (DDL) command in a database.
July 21, 2010 at 8:42 am
...and the 3rd instance has it's own resources?
Are you installing from the node that the new cluster group is currently running on?
Are you logged in to the server, or is...
July 21, 2010 at 6:31 am
--soap box
I think the principle issue with misconceptions is that people are using the Table Designer in Management Studio. They "click" they "key" icon which will create the PK...
July 20, 2010 at 6:10 am
Do you have a baseline of when the systems was performing well?
The following is from "Professional SQL Server 2005 Performance Tuning", WROX, Page 50.
Trap these counters to confirm disk bottlenecks:
Avg...
July 19, 2010 at 7:05 am
There really aren't any issues with regards to size of the ASPState database, nor the performance. The size stays relatively small. There are "cleanup" jobs that run on...
July 14, 2010 at 6:39 am
Yes, it's sloppy.
You should "virtually" delete the child records, as well. You don't want "virtual" orphaned records because it will confuse developers later as well as other users who...
July 13, 2010 at 6:06 am
1. Evict the crashed node by logging on to the working cluster node and running "cluster administrator".
2. Rebuild the server and configure clustering on the newly rebuilt node
3....
July 6, 2010 at 6:09 am
imani_technology (6/20/2010)
Is msdb the only database that you can deploy the package to? ...
June 23, 2010 at 6:30 am
I've created fixed-width flat files and what seems to work the best for my purposes is adding a {CR/LF} at the end of the query statement.
+ CHAR(13) + CHAR(10)
Our mainframes...
June 22, 2010 at 6:41 am
... and the security settings of the link itself.
June 21, 2010 at 6:29 am
How about:
Insert into tblModels (Column1,Column2,Column3,Column4,...)
SELECT
n.COL1, n.COL2, n.COL3, n.COL4, ...
FROM tblReceivedData n
where
NOT EXISTS
(SELECT o.col1, o.col2 from tblModels o
where n.col1 = o.col1
and n.col2 = o.col2)
June 18, 2010 at 8:27 am
Viewing 15 posts - 136 through 150 (of 449 total)