Tagged Questions
The pass-through tag has no wiki summary.
3
votes
2answers
822 views
Return values from a pass-through query via VBA
I have VBA code to run a query in SQL-Server 2008. It runs fine and displays the table that I need. The code that does this is here:
Set db = CurrentDb
Set qdf = db.QueryDefs("MyStoredProcedure")
...
3
votes
4answers
1k views
Is there a simple way to pass specific *named* powershell parameters through directly to a called function
I am sure I read somewhere that there is an easy way to pass named parameters from a calling function to a called function without explicitly naming and specifying each parameter.
This is more than ...
2
votes
1answer
365 views
Exec an SQL-Server 2008 stored-procedure from Access, passing a TABLE variable
I need to pass a table from Access to SQL-server and execute a stored-procedure.
I'm using pass-through queries in Access to do this.
My pass-through query:
DECLARE @MyVar TABLE { ...
1
vote
1answer
24 views
HTTP Server data unencrypted during pass through
I need to solve an issue where the HTTP post data is unencrypted in memory for a few seconds before proxying it onto the next server. Let me explain.
In a browser a user enters form data. Sensitive ...
1
vote
1answer
312 views
Changing connection params when using pass-through query
I have an Access 2003 application that I would like to create reports for using stored procedures via pass-through queries. Everything works fine with one exception. When I specify the stored ...
0
votes
1answer
83 views
sas sql pass-through to macro variable as a character
How to read macro variable as a character in SAS SQL pass-through
My goal is to put "one" as the only value in var3 , but now i get
"unknown column one"
%macro test(notvar=)
proc sql;
...
0
votes
1answer
22 views
Oracle Link Query returning strange values
I am developing the Store procedure which queries the Oracle Link Server and returning values.
If I copy the statement which is printed on the screen and run on the Oracle SQL Developer, it returns ...
0
votes
1answer
105 views
Another ODBC Call Failed Topic
I am running Access 2010 FE and SQL Server 2005 BE.
I can execute pass through queries to my SQL Server succesfully by using DSNless connections.
During my testing phase sometimes I need to restore ...
0
votes
1answer
130 views
Maximum Length of a SQL Query in Microsoft Access 2010?
Attempting to copy/paste a 159KB TSQL query into Microsoft Access 2010 passthrough query editor (to a Microsoft SQL Server 2008 backend).
This produces pop-up error, "The text is too long to be ...
0
votes
1answer
183 views
How do you alter the ODBC connection string for existing MS-ACCESS pass-through queries in VBA
I have a number of pass-through queries setup in a MS-Access database with pre-defined ODBC connection strings. The problem is the database can link to one of two MySQL databases. The user selects the ...
0
votes
1answer
86 views
What do you Need for Windows Authentication Pass through on an MVC website and WCF
Ok. I have an MVC2 application that accesses a WCF program, and uses that information to populate its model and so forth. I am unsure of everything I need to get this through? I have Impersonation ...
0
votes
1answer
2k views
jQuery Ajax with Json call to WCF service pass-through to WCF service
I'm attempting to use jQuery Ajax call with Json to call a webservice which is a pass-through and calls another webservice. This works if I don't use ajax, works as an ajax call to the backend ...
0
votes
4answers
692 views
MS Access pass through dependent on form value
How do I assign a pass-through query to Row Source that is dependent on another value in the form?
Essentially I want to do this:
SELECT x.companyid, x.companyname, x.productid
FROM x
WHERE ...
0
votes
1answer
220 views
Core Audio: Bizarre problem with pass-through using render callback
I am implementing an audio passthrough using the RemoteIO audio unit, by attaching a render callback to the input scope of the output bus (ie the speakers).
Everything works swimmingly, ...
...
0
votes
2answers
4k views
Squid+iptables: how do i allow https to pass-through and bypassing Squid?
Basically started with Squid and iptables today (google is your friend). This stuff is going to be the death of me.
I have Squid3 setup on Ubuntu 9.04 server as Transparent Proxy. It works sweetly ...
0
votes
1answer
551 views
Access 2007 pass-through query returning negative number instead of positive
I am using Access 2007 with a pass-through query. The data values that I am retrieving are from a bit column (0, 1) but when the pass-through query runs the data that is returned is either 0 or -1. I ...
0
votes
1answer
1k views
MS Access, Pass through query with complex criteria. Criteria include Select statments and vba functions
I currently have multiple queries that query data from a few tables linked through ODBC, and some temporary tables that are edited through the user interface. I have complex criteria in my queries ...