Viewing 11 posts - 16 through 26 (of 26 total)
Of course Sergiy is right, The idea of building a name parser that is 100% accurate when there are no rules about the names to parse is absolute lunacy. ...
April 10, 2009 at 8:00 am
If you have a large number of names to process I think reading the SQL Server Central Article
The "Numbers" or "Tally" Table: What it is and how it replaces a...
April 9, 2009 at 4:18 pm
I just read your response. You are definitely right about encapsulating the logic into a function. It does make things much cleaner, and it never occurred to me...
April 9, 2009 at 3:02 pm
If you really need all all inserts, updates, and deletes on all tables, perhaps you should look into using a third party transaction log reader. Of course this...
March 5, 2009 at 8:13 am
I use the power function to accomplish this task.
SELECT RIGHT(power(10,@TotalLength) + @myInt,@TotalLength)
I did use
SELECT RIGHT(Convert(varchar,(power(10,@TotalLength) + @myInt)),@TotalLength)
but found that I could eliminate the convert function from the statement.
Thanks
Todd P...
March 5, 2009 at 7:46 am
Thanks, I think I get it now. I thought the Top filter of the subquery would be applied first and therefore the search for a match would be limited...
January 4, 2008 at 10:01 am
Although It is not to your scale. We have a large raster (40gb) but it doesn't change very often. At ArcSDE 9.0, ESRI Licenses changed so that you can run...
May 7, 2007 at 8:29 am
There is an excellent article about hierarchies in Joe Clecko's book SQL For Smarties. But it involves some upfront work on the resource table. If you can alter the database...
April 20, 2007 at 8:17 am
I think the summary at the end of the article has got it right.
"It's a good idea in theory, but I'm not so sure that I want it implemented in...
December 27, 2006 at 7:33 am
For What its worth have you tried.
INSERT INTO
INSERT INTO
OpenRowSet('Microsoft.Jet.OLEDB.4.0'
,'Text; Database=D:\External'
select
Convert(Char(10),au_id),
Convert(Char(20),au_lname),
Convert(Char(20),au_fname),
Convert(Char(15),phone),
Convert(char(20),address),
Convert(Char(10),city),
Convert(Char(10),state),
Convert(Char(5),zip),
Convert(Char(10),contract)
from dbo.authors
When I tried the example I experianced truncation issues because field defs between pubs.authors and authors2.txt did...
February 7, 2006 at 10:04 am
We have many access applications with a SQL back end. We Utilize a local access table to store the connection information and visual basic for applications code to link the...
March 18, 2005 at 9:09 am
Viewing 11 posts - 16 through 26 (of 26 total)