Viewing 15 posts - 91 through 105 (of 108 total)
I would definitely suggest some kind of database modeling tool, which would allow you to reverse-engineer databases, and provide you with a graphical model of what's going on (tables, relationships,...
January 11, 2008 at 10:27 am
I also found Microsoft's "SQL Server 2005 Administrator's Companion" a great resource. Plenty of great information in there that spans the most important aspects of being a dba.
January 8, 2008 at 6:59 am
You mean besides the utter confusion it would create...:D
January 7, 2008 at 3:19 pm
What a great way to spend a part of the morning on the last Friday before the holidays - thanks!!
December 21, 2007 at 8:34 am
Great, thanks for your input, Noel - it's good to know someone is doing what I'm doing!
I'm assuming that you are using scripts to change your recovery model - are...
December 21, 2007 at 6:55 am
An excellent article. I liked the points about trust and respect, as being the cornerstones to a good relationship between manager and employee. I also think that humility is a...
December 20, 2007 at 7:05 am
Obviously a very stimulating article, Steve - kudos. 🙂
I too used it as a starting point for how to track the total time that a proc was taking to run,...
December 17, 2007 at 1:05 pm
Thanks for the reply, Erik, your setup definitely sounds interesting.
Maybe I didn't make myself very clear regarding my situation. I understand that Replication uses IUD statements on subscriber tables, but...
December 17, 2007 at 11:33 am
Thanks so much for your reply, Erik.
When you say that the recovery model for the replicated db is irrelevant, I'm assuming you mean because the entire db is being replicated....
December 17, 2007 at 7:30 am
Terrific - thank you, Mark and jghali for you input.
December 12, 2007 at 7:59 am
Thanks for the feedback, guys - I appreciate the insight.
Have a good weekend,
Simon Doubt
DBA, Fulcrum Publications, Inc.
November 30, 2007 at 3:08 pm
Jeff Moden (11/29/2007)
November 30, 2007 at 12:51 pm
Just figured it out:
I used:
SELECT ASCII(RIGHT(MyString,1))
FROM dbo.tblWeirdChar
and the ASCII code was 160, which is a non-breaking space.
So, I used:
UPDATE dbo.tblWeirdChar
SET MyString = REPLACE(MyString,CHAR(160),'')
And it worked!
Sorry for the self-posting.
-Simon Doubt
DBA, Fulcrum...
November 30, 2007 at 8:52 am
Here's my story - hopefully it helps:
I had several years of experience working as a technical consultant for a company selling a CRM/SFA database program. That was my introduction to...
November 8, 2007 at 9:43 am
In that case, you should create a new table with a new column something like this:
CREATE TABLE dbo.NewTable
(
ColRowID INT NOT NULL IDENTITY (1,1)
....
)
Where ... is the other columns, which shoud...
November 7, 2007 at 3:29 pm
Viewing 15 posts - 91 through 105 (of 108 total)