Viewing 11 posts - 1 through 11 (of 11 total)
I realize that. DBCCs have been done and everything is back as it should be.
Thanks again for helping out. I really appreciate your input!
July 1, 2010 at 11:13 am
It was done in the context of legitimate administrative activates. Unfortunately, it had a negative impact due to state of the environment at the time. There were a...
July 1, 2010 at 11:05 am
LOL!
Problem solved (I believe). I was one of our own DBA's [name withheld].
July 1, 2010 at 8:47 am
Yes. In fact it was. Looks like the server was recovering from a hard reboot the two days previous however, the databases involved were working fine for...
July 1, 2010 at 6:35 am
Agreed. I am not sure why Sample B is cited as being a self-join as it does not join to itself! 😛
June 18, 2010 at 5:48 am
SELECT
T1.col1,
T1.col2,
T2.col3,
T2.col4
FROM
[MySelfJoinTableName] T1 JOIN [MySelfJoinTableName] T2 ON T1.FKColName = T2.PKColName
June 18, 2010 at 5:38 am
Run “exec sp_who” and see if your script to drop/recreate the constraint is being blocked by anyone (including yourself).
It is possible you left a transaction open accidently. You can...
June 15, 2010 at 5:39 am
I am not sure if I understand completely. I imagine that the categories you speak of are treated just like tree nodes, and that a node can NOT have...
October 27, 2008 at 7:15 am
The following represents an example of a self reference table hierarchy example. You can see that the sub items of the item marked as inactive are not displayed.
CREATE TABLE...
October 24, 2008 at 6:53 am
I would tend to agree. If you know how to use regular expressions, that would probably be a better solution. User defined functions tend to slow things down...
January 30, 2008 at 9:12 am
I ran into this a while back. I came up with a solution, but it is not the best. Create a function in the database that takes one...
January 30, 2008 at 8:59 am
Viewing 11 posts - 1 through 11 (of 11 total)