- Create a Linked Server to the other SQL Server
USE master GO EXEC master.dbo.sp_addlinkedserver @server = N'ARCS' , @srvproduct=N'' , @provider=N'SQLOLEDB' , @datasrc=N'ARCS-SERVERNAME' , @catalog=N'ARCS-DBNAME' GO
- Add login credentials for the other SQL Server (if you don't use trusted login)
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname = N'ARCS' , @locallogin = NULL , @useself = N'False' , @rmtuser = N'arcs-username' , @rmtpassword = N'arcs-password' GO
- Write Query to access ARCS from the Elite database
SELECT TOP 100 * FROM ARCS.ARCS-DBNAME.dbo.ARCS_HOLDS
Monday, February 22, 2010
Linked Servers
As you know by now, I write quite a bit of SQL for mining data from the Enterprise database. Occasionally, I'll need some data from another database on a different SQL Server to pair with some information from Elite. In SQL Server, you can create a linked server to be able to join across SQL Servers. For example, we use Minisoft's ARCS accounts receivable program, and I've created a linked server to join ARCS notes to real-time Elite data.
Wednesday, February 17, 2010
Checks for a Vendor with General Ledger Distribution
It is fairly easy to pull a list of checks for a vendor within AP Inquiry in Elite Enterprise. However, sometimes you just need a little more information. The following query will pull a list of checks along with the GL accounts affected by those checks.
A couple things to note:
A couple things to note:
- Due to the GL distribution piece, there may be more than 1 row per check.
- The cash portion of the GL distribution has been excluded (take out the udtrtp line if you would like that included)
- The glnum and glrc1 are combined into one number
- The user indicated is the user who created the batch. More than one user can post items to a batch.
SELECT ap.apnum AS 'Vendor #' ,ap.apname AS 'Vendor Name' ,csddt.cknum AS 'Check #' ,csddt.ckline AS 'Line' ,csddt.baid AS 'Bank' ,csddt.ckdate AS 'Date' ,csddt.vo_id AS 'Voucher #' ,csddt.glnum+'-'+csddt.glrc1 AS 'GL #' ,gldes AS 'GL Description' ,dbo.udfCsdDes(csddt.baid,csddt.cknum,csddt.ckline) AS 'Description' ,csddt.amt AS 'Amount' ,fmsbatch.opuserid AS 'User' FROM csddt INNER JOIN ap ON csddt.apnum=ap.apnum INNER JOIN fmsbatch ON csddt.cdbtid=fmsbtid AND fmsbatch.trtype='CK' INNER JOIN gl ON csddt.glnum=gl.glnum AND csddt.glrc1=gl.glrc1 INNER JOIN csd ON csd.baid=csddt.baid AND csd.cknum=csddt.cknum WHERE csddt.ckdate >= '1/1/2009' AND ap.apnum = '123456' AND udtrtp <> 'CA' AND csd.voiddt IS NULL ORDER BY csddt.ckdate
Tuesday, February 9, 2010
Outstanding Trust Checks
In this post, I will be highlighting a common method that I use to automatically pull information from the Elite database directly into MS Excel. I am often asked for a report that is transformed from an ad hoc request into a monthly (or more regularly) deliverable. I try to automate these as much as is possible. As is typical, there's more than one way to accomplish this objective, but here's how I often solve the problem.
1. Write Query to pull the exact information I need. In this case, trust account #606 is required with check dates prior to 1/31/10 (tie to month-end bank statement). This is run after reconciling the account. Therefore, all non-checks should have a presentation flag of 'Y', and are excluded.
2.A. The code below will create a stored procedure that runs the code above with 2 variables passed to it. First, the bank account and second, the end date for transactions.
1. Write Query to pull the exact information I need. In this case, trust account #606 is required with check dates prior to 1/31/10 (tie to month-end bank statement). This is run after reconciling the account. Therefore, all non-checks should have a presentation flag of 'Y', and are excluded.
SELECT trsttran.trindex AS 'Index #', matter.mmatter AS 'Matter #', dbo.udfMattDesc(matter.mmatter) AS 'Matter Description', dbo.udfTKFullName(matter.mbillaty) AS 'Billing Attorney', trsttran.trdate AS 'Date', trsttran.trdocnum AS 'Check #', ap.apname AS 'Vendor', dbo.udfTrustDesc(trsttran.trindex) AS 'Description', trsttran.tramount AS 'Amount' FROM matter INNER JOIN timekeep ON mbillaty=tkinit INNER JOIN trsttran ON trmatter = mmatter LEFT OUTER JOIN trcheck ON trcheck.trindex=trsttran.trindex LEFT OUTER JOIN ap ON trcheck.trvendor=ap.apnum WHERE trsttran.tracct = '606' AND trsttran.trpresflag='N' AND trsttran.trdate <= '1/31/2010' AND trsttran.trdocnum Is Not Null ORDER BY trsttran.trdate2. At this point, for an adhoc request, I will often copy/paste the report into MS Excel and off we go. However, if I expect to be running this on a frequent basis, I will use the MS Query add-in to MS Excel and paste the SQL into the MS Query. This works like a charm. However, there are often criteria that will need to be changed each time the report is run. In MS Query, you can add parameters by replacing the criteria value with a '?' (i.e. trdate <= ?) This will allow you to either set a prompt to request the value, or reference a specific cell for a value. BUT, this only works if you have a fairly simple query that can be "graphically represented" in MS Query. So if your query can't be "graphically represented", what do you do? Stored Procedure. (it's not as scary as it sounds)
2.A. The code below will create a stored procedure that runs the code above with 2 variables passed to it. First, the bank account and second, the end date for transactions.
IF EXISTS ( SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE SPECIFIC_SCHEMA = N'dbo' AND SPECIFIC_NAME = N'usp_Trust_OS_Checks' ) DROP PROCEDURE dbo.usp_Trust_OS_Checks GO CREATE PROCEDURE dbo.usp_Trust_OS_Checks @tracct VARCHAR(20) = NULL, @maxdate DATETIME = NULL AS SELECT trsttran.trindex AS 'Index #', matter.mmatter AS 'Matter #', dbo.udfMattDesc(matter.mmatter) AS 'Matter Description', dbo.udfTKFullName(matter.mbillaty) AS 'Billing Attorney', trsttran.trdate AS 'Date', trsttran.trdocnum AS 'Check #', ap.apname AS 'Vendor', dbo.udfTrustDesc(trsttran.trindex) AS 'Description', trsttran.tramount AS 'Amount' FROM matter INNER JOIN timekeep ON mbillaty=tkinit INNER JOIN trsttran ON trmatter = mmatter LEFT OUTER JOIN trcheck ON trcheck.trindex=trsttran.trindex LEFT OUTER JOIN ap ON trcheck.trvendor=ap.apnum WHERE trsttran.tracct = @tracct AND trsttran.trpresflag='N' AND trsttran.trdate <= @maxdate AND trsttran.trdocnum Is Not Null ORDER BY trsttran.trdate GO2.B. You can execute the stored procedure as such. This will give you the exact same results as the original query.
EXECUTE dbo.usp_Trust_OS_Checks '606','01/31/2010' GO2.C. Next I need to grant permission for our read-only account to execute the stored procedure.
GRANT EXECUTE ON dbo.usp_Trust_OS_Checks TO elitereadonly; GO3. Now, how do we get a stored procedure to execute from MS Query within MS Excel?
- Within MS Excel, first choose 2 cells for input for the variables (go ahead and put the data there).
- Choose the Data menu, Import External Data, New Database Query.
- Choose the data source that corresponds to your Elite database.
- After logging in, you should see the query wizard, choose cancel.
- Choose Yes when prompted to continue editing in MS Query.
- Next you should see the "Add Tables" dialog, choose close. You have now arrived at the basic MS Query window (looks remarkably similar to MS Access).
- Under the View menu, choose the SQL option. Use the following code to execute the stored procedure.
{CALL dbo.usp_Trust_OS_Checks(?,?)}
- You will get an alert saying that the SQL cannot be represented graphically, choose OK.
- Next you will be prompted for the two parameters. Enter the data requested (in my case, 606 and 1/31/2010).
- You should now see the data in MS Query.
- From the File menu, choose Return Data to MS Excel.
- You will be prompted with the following dialog box.
- Choose the cell you would like the data to start in, and then choose the Parameters option. Here you have the option to either prompt for the value, use a static value, or get a value from a cell. If you choose the latter, you will have an option to automatically refresh the data when the value changes (if you have more than 1 parameter, I'd recommend not choosing this). When you are done, choose OK and OK and your data should magically appear within MS Excel.
Subscribe to:
Posts (Atom)