Viewing 15 posts - 166 through 180 (of 623 total)
Actually works as expected when I actually use the function instead of simulating its output....
CREATE FUNCTION [dbo].[DelimitedSplit8K]
--===== Define I/O parameters
(@pString VARCHAR(8000), @pDelimiter...
June 28, 2013 at 4:43 pm
brdudley (6/28/2013)
Easiest path is probably to switch the file connector to see a single column.
I could bulk insert into a single column and then use the Moden string splitter. If...
June 28, 2013 at 11:02 am
I was previously skipping row 1 but now I need to extract some data out of the header.
I'll take a look at script components which I haven't used before.
The file...
June 28, 2013 at 8:09 am
Can you move you After Insert trigger logic into the Access 'before insert' event?
June 27, 2013 at 8:16 am
If I understand this correctly the trigger needs to run on insert but a record can't be inserted until the trigger runs.
Perhaps you could put your trigger logic in a...
June 26, 2013 at 9:27 am
I think the source of your data may be more important (SQL Server) than that where you are querying from. If I am understanding correctly the Access query is interpreted...
June 24, 2013 at 4:32 pm
SQL server uses % as the wildcard.
See if the last few items in the following article clarifies the situation.
June 24, 2013 at 1:22 pm
http://www.mssqltips.com/sqlservertutorial/160/sql-server-stored-procedure/
This looks like a good tutorial.
June 20, 2013 at 12:01 pm
I would definitely read up on stored procedures. Even if you do not need to use intermediate result sets there are numerous advantages to using stored procedures in reports.
Below is...
June 20, 2013 at 11:53 am
In Access we have reports that run/reference mutiple queries in order to excute the final report. My question is how to convert a report that runs mutiple queries over...
June 20, 2013 at 11:13 am
Try putting single quotes around the '1' or cast it as VARCHAR-- the expression is trying to compare a string ('ABC') with a numeric (1) and that will generate that...
June 20, 2013 at 10:42 am
I think it's equivalent.
Oh I see, provide the easy and obvious answer. 🙂
I agree that this is equivalent.
This will work
SomeVal2 = 'ABC' or SomeVal is not null
This won't but...
June 20, 2013 at 10:34 am
It works if I drop it in the case statement but I think I need it. Additional sample data below.
I want to exclude XYZ and include ABC replacing its NULL...
June 19, 2013 at 3:41 pm
I appreciate you spending any time on this at all since it seems like a data issue,
Below is more representative of the situation. Removing the WHERE statement and the query...
June 19, 2013 at 3:23 pm
>>where column1 = 1
This throws the error Conversion failed when converting the varchar value '-4.67625' to data type int.
>>where IsNumeric(Column1) = 0
This will exclude one row. This is the row...
June 19, 2013 at 2:28 pm
Viewing 15 posts - 166 through 180 (of 623 total)