Viewing 15 posts - 8,401 through 8,415 (of 13,469 total)
malik_nagel (11/21/2010)
November 21, 2010 at 8:48 pm
Sean Lange (11/19/2010)
The simple piece I posted should work fine for that format too. Simple, clean, fast. 🙂
gotta agree; clean fast code that takes into consideration everything wer've seen so...
November 19, 2010 at 9:41 am
depending on the data, for example if it was always N{quote}{three chars}{quote}{Comma}
you might just use STUFF and a tally table to for to the length of the variable
November 19, 2010 at 8:38 am
first, it's a creepy requirement to uppercase everything without reviewing the data.
do a backup before you run the results of this query. someone undoubtedly did not think this requirement...
November 19, 2010 at 8:31 am
Sean Lange (11/19/2010)
You could use the replace function to remove N' and replace it with '
that's work pretty well, except for those rare cases when a variable between quotes ends...
November 19, 2010 at 8:04 am
IMHO, it depends on the syntax you are more familiar with to soften the learning curve.
.
learning a "new" language is really more about two things: learning the basic syntax, and...
November 19, 2010 at 7:59 am
wow, that was my best guess, As I'm on a listserv for Watin(Web Application Testing in .NET...IE/firefox browser automation)
November 18, 2010 at 11:15 am
i don't have IE8 at work, but this website has a ton of screenshots that might help;
:
http://blogs.msdn.com/b/ie/archive/2008/08/27/introducing-compatibility-view.aspx
November 18, 2010 at 8:07 am
there was no installation to do...i downloaded the command line utility i pointed at fromt he previous posts, then unzipped the contents of 7za465.zip into the C:\Utils folder; no msi...
November 18, 2010 at 8:04 am
what specific error do you get?
if you print your command before executing it, you could paste it in a command line window....does it work from there? mine does.(from teh cmd...
November 18, 2010 at 6:33 am
this may be related: when testing an automation tool, someone encountered IE8 being very slow.
there seems to be a Client setting in IE8 that you change to speed it up:
IE8...
November 18, 2010 at 6:05 am
ok here's a working example, parsed out and tested; i don't see any difference between what i posted from memory:
--Application.StartupPath & "\7za.exe", "e HDS_9.0.4.7.zip -o" & Application.StartupPath & "*.* -y")
CREATE...
November 18, 2010 at 5:43 am
the EXCEPT operator is awesome for this, but you can do this with left outer joins as well.
SELECT chartnumber, Dataofservices,CPT,Amount FROM TABLE1
EXCEPT
SELECT chartnumber, Dataofservices,CPT,Amount FROM TABLE2
that will give you lists...
November 18, 2010 at 4:37 am
i believe it has to do with collations.
on my SQL 2008, i get all rows back unless i compare with a binary collation:
declare @tab table(foo nvarchar(40) COLLATE SQL_Latin1_General_CP1_CI_AS)
insert into @tab...
November 18, 2010 at 4:32 am
duplicate post.
follow this link for the more robust question, as well as code examples using 7zip:
http://www.sqlservercentral.com/Forums/Topic1022139-5-1.aspx
November 18, 2010 at 4:07 am
Viewing 15 posts - 8,401 through 8,415 (of 13,469 total)