Viewing 15 posts - 1 through 15 (of 158 total)
The "Track Name Changes" option has been known to slow down Access as well. You can turn it off under the Options Menu | Current Database.
January 28, 2020 at 7:00 pm
The short answer to this is no. You cannot directly import the EDI file into SQL. EDI is hierarchical, more similar to XML than it is to SQL; EDI requires...
November 1, 2019 at 6:17 pm
If you write out the truth table you'll see what is going on:
Color Country Color<>'Black' Country<>'USA'
Red ...
October 30, 2019 at 2:37 pm
Instead of:
select [col1], [col2] from Customer
where BranchId = CASE when @BranchId IS NULL THEN BranchId else @BranchId end
I usually go with
select [col1], [col2] from Customer
where (@BranchID is NULL OR...
December 21, 2015 at 12:41 pm
IceDread,
No, that's not the case.
I'm not sure what you're disputing here. Are you saying that the fields I listed are not different, or that the article and comments do...
March 29, 2012 at 10:08 am
The essay and the comments conflate too many things.
Computer Science is not programming, is not Computer Engineering, is not IT.
Computer Science is the field of mathematical analysis of algorithms, languages,...
March 28, 2012 at 10:40 am
I want to put a slightly different slant on my answer.
From the point of view of "value to the company" OF THE SALARY, a salesperson who is out in the...
February 17, 2012 at 6:40 am
I prefer AS for aliasing because I think there is a semantic difference between = and AS. = implies an assignment--copying a value into a new place, while AS...
February 2, 2012 at 9:20 am
It appears that this will not work in January:
If your AsOfDate = '2011-01-02' you will return 'December 2011' instead of 'December 2010'.
When I am doing something like this, I try...
November 8, 2011 at 7:30 am
I think that obfuscation of data is useful to prevent inadvertant disclosure. Most of the time I don't need, or want, to know the "real" data. I just...
October 19, 2011 at 10:28 am
I have to transfer data from Access 97, where Memo field uses Double-byte encoding. If you are using recent versions of Access, then your Memo field must be using Unicode,...
October 10, 2011 at 7:32 am
Use the 3rd parameter of CHARINDEX to ensure that the </t2> you are finding is AFTER the <t2> that you find.
e.g.
CHARINDEX('</t2>',stringtosearch,CHARINDEX('<t2>',stringtosearch))
--
JimFive
October 5, 2011 at 8:55 am
I want to come up with a T-SQL solution that can be easily imported into Excel for a different kind of analysis. Any help would be appreciated.
I would like to...
October 5, 2011 at 8:47 am
Access Memo fields are equivalent to SQL nText data type. If I were doing this manually, I would bring it in to an nText and then copy the data...
October 5, 2011 at 8:29 am
I want to preface this by saying that I've not looked at this problem before and I'm sure the below is well known, but it is a fun little problem.
...
October 5, 2011 at 7:12 am
Viewing 15 posts - 1 through 15 (of 158 total)