Viewing 15 posts - 436 through 450 (of 496 total)
Mickey your link to Jeff's article is actually pointing back to this post. I think you meant to post to this article[/url]
October 24, 2013 at 2:23 pm
I'm not sure what 60% means to you but you have a couple of possibilities:
1. If this is on-going then look into DQS: http://technet.microsoft.com/en-us/library/ff877917.aspx
2. You could try using SOUNDEX http://msdn.microsoft.com/en-us/library/aa259235%28SQL.80%29.aspx
...
October 24, 2013 at 9:40 am
I'm not the greatest at string manipulation, but here you go:
select substring(col1,CHARINDEX('Status="',Col1,1)+8, (charindex('"',col1,CHARINDEX('Status="',Col1,1)+8))-(CHARINDEX('Status="',Col1,1)+8))
October 24, 2013 at 9:22 am
I'm not sure you are asking the right question. I don't believe you need to drop tables or loop through the data. It seems like you would be able to...
October 24, 2013 at 8:58 am
Is this a one-time thing or an on-going process that you need to develop? Is the issue always as simple as Drive - dr., Lane - ln., etc.? Or is...
October 24, 2013 at 8:54 am
I couldn't find any documentation either, but they need to understand how a stored procedures and queries work. When you execute a stored procedure a lot of stuff happens, but...
October 24, 2013 at 8:51 am
So, if I understand your request you want to return all rows from db1 where the CASEID is not in the derived table? If that is true you can simple...
October 24, 2013 at 8:37 am
Do you belong to a local user group? If not, try finding a local PASS chapter: http://www.sqlpass.org/PASSChapters/LocalChapters.aspx
Networking will be huge while you are looking to break in. Sign up to...
October 23, 2013 at 2:36 pm
Hi Jeff - Welcome to the forum!
For these kind of questions please supply the following:
1. Scripts to create all tables that are required
2. Script to insert sample data
3. Expected...
October 23, 2013 at 9:04 am
Adi Cohn-120898 (10/22/2013)
October 22, 2013 at 8:35 am
As was stated above it doesn't have an effect on READ COMMITTED or READ UNCOMMITED, but it has a big effect if your isolation level is set to REPEATABLE READ...
October 22, 2013 at 8:26 am
You could run a query like this:
SELECT dbo.SQLAGENT_SUSER_SNAME(owner_sid)
, SUSER_SNAME(owner_sid) as OwnerName
, name as JobName
FROM ...
October 22, 2013 at 8:21 am
Like Kurt said is this a one off or a on-going thing. If it is a one-off and you don't want to use a tool to split the encrypted backup...
October 22, 2013 at 8:12 am
You may have leading and/or trailing tabs instead of spaces which the trim's won't replace. You can use CHARINDEX to find CHAR(9) in a string and then use the replace...
October 21, 2013 at 3:56 pm
LTRIM and RTRIM only remove leading and trailing white space. It doesn't remove zeros. If this is a name field are zeros allowed at all? If not, then try REPLACE()...
October 21, 2013 at 3:39 pm
Viewing 15 posts - 436 through 450 (of 496 total)