Viewing 15 posts - 196 through 210 (of 623 total)
Ok, thank you sir, I'll continue to explore this. My primary goal is to minimize the potential impacts to the application using the primary database from my reporting and ad...
May 10, 2013 at 2:14 pm
Ok let me refine my question. If I redirect select statements to the replicated database would the performance of the primary possibly be be improved. Sure at the server level...
May 10, 2013 at 1:34 pm
>>One way that might work is to do the data entry GUI in Access and then use Reporting Services
I concur.
If you can't use Reporting Services and must or want...
May 8, 2013 at 11:11 am
I think this was actually low C drive space. Once this was rectified the phantom failures stopped. I did educate myself on performance monitor and SQL counters for future...
May 3, 2013 at 1:22 pm
Am I over complicating the string extraction? I want the text between the first and second occurrences of '.'
DECLARE @paths TABLE(path varchar(50))
INSERT INTO @paths
SELECT '.ab.qwer.poi' UNION
SELECT '.1.qwerty.ab' UNION
SELECT '.1234567890.asd.a'
SELECT
path,
LEFT
(
RIGHT
(
path,LEN(path)-1
)
,
charindex('.',RIGHT(path,LEN(path)-2)
)
)...
April 18, 2013 at 3:22 pm
Access has had master/detail or parent/child forms since at least Access 97.
April 16, 2013 at 11:54 am
So after gleaning that this problem may be solved by a recursive CTE I landed here.
The following seems to work. I am still studying this solution since it...
April 16, 2013 at 9:16 am
This is what I have tried but this won't handle multiple levels. Is this the recursion rabbit hole?
DECLARE @GroupCode varchar(20)
SET @GroupCode = 'A'
SELECT DISTINCT
Member
FROM
(
SELECT
Member
FROM Groups G
INNER JOIN GroupMembers GM
ON...
April 15, 2013 at 12:46 pm
Thanks for your response. My procedure has two result sets. Each result set has a different structure. My temp table is matching the first structure. Shouldn't the second result set...
April 9, 2013 at 5:12 pm
It's still hard to beat Access as rapid application development environment for building data entry forms. If your access tables are properly normalized and have proper keys you can import...
April 8, 2013 at 12:22 pm
Yes, its called a data driven subscription.
http://msdn.microsoft.com/en-us/library/ms169673.aspx
I believe you need Enterprise Edition for this.
April 4, 2013 at 8:37 am
If I understand correctly the procedure is called multiple times until all rows are processed. Every time its called it needs to join with the large remote data set. I...
April 3, 2013 at 10:26 am
Can you put the procedure on the remote server and call it from your primary? That has worked fro me in some scenarios.
EXEC RemoteServer.RemoteDB.dbo.MyProc
April 3, 2013 at 8:49 am
Viewing 15 posts - 196 through 210 (of 623 total)