Viewing 15 posts - 46 through 60 (of 100 total)
Thank you capn.hector and anthony.green,
I didn't think it would be so easy. I thought there would be some kind of logic that would much more complicated... Sorry, I feel...
April 3, 2012 at 8:50 am
Sure, when can you start?
They started cleanup yesterday. As of this morning, there were less than 2500 records remaining... I think by the end of the week, they should be...
March 28, 2012 at 9:58 am
Thank you Everyone,
The REPLACE worked; however, after running the query, I found thousands records with all kinds of non-numeric values. That's is a lot of REPLACE(REPLACE(REPLACE...
So, I turned it back...
March 27, 2012 at 1:54 pm
I'm going to start a conversation with the third party to see if they have any advice as to what might be going on.
I do own a handful of...
March 19, 2012 at 4:35 pm
You are correct, it is a third party tool. It was setup of normal compression and it has been that way for a while now.
I also have a Maintenance...
March 19, 2012 at 4:15 pm
That's what I thought as well. But this was on a Sunday night and no one worked yesterday. I also spoke with the customer and he mentioned that everything was...
March 19, 2012 at 3:30 pm
Tank you to everyone. The work the eeryone posted helped me figure out what I needed to do. Thanks again and I appreciate your postings. 😀
March 9, 2012 at 9:24 pm
Thank you for the reply. Unfortunately the query doesn't like " > 1". It throughs Msg 102, Level 15, State 1, Line 2 Incorrect syntax near '>'.
March 8, 2012 at 3:28 pm
Thank you. That's a lot easier...!
March 6, 2012 at 5:06 pm
I'm not doing anything on the backend (and sorry if I lead you to believe this). HR is requesting a report from me. I'm trying to mask the SSN...
March 5, 2012 at 8:27 pm
Never mind. I used a variable plus RIGHT
EXAMPLE:
DECLARE @mask VARCHAR(30)
SET @mask = 'XXX-XX-'
SELECT
p.FIRST_NAME + ' ' + p.LAST_NAME,
(SELECT @mask...
March 5, 2012 at 8:12 pm
I knew it so was simple. I was using distinct and that was throwing the whole thing off... I feel real dumb right now... Sorry for wasting your time. 🙁
March 4, 2012 at 4:20 pm
sqlzealot-81 (10/12/2011)
To me, Nothing is free. Do only for required tables...
The problem here is, I don't know the tables. I need to do a series of actions in the...
October 13, 2011 at 10:45 am
CDC is great, thank you for the advice.
I do have a question that my research has not yielded a valid response.
CDC captures each table that a...
October 13, 2011 at 10:43 am
This is the code that I used...
IF EXISTS (SELECT *
FROM
...
October 6, 2011 at 4:15 pm
Viewing 15 posts - 46 through 60 (of 100 total)