﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Application Framework - V1 » Issues  » StrataFlix: Error Searching People</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Tue, 09 Jun 2026 04:14:54 GMT</lastBuildDate><ttl>20</ttl><item><title>StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26251.aspx</link><description>The following error was received when I attempted to run a people search, then double-clicked on one of the results:&lt;br&gt;
&lt;br&gt;
[quote]Could not find stored procedure 'dbo.PeopleMaintenance_RetrieveAllData'.[/quote]&lt;br&gt;
&lt;br&gt;
I thought I downloaded the most recent version.&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
Bill&lt;br&gt;
&lt;br&gt;
&lt;br&gt;</description><pubDate>Thu, 25 Mar 2010 17:29:22 GMT</pubDate><dc:creator>Bill Cunnien</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26631.aspx</link><description>Hi Sam,&lt;br&gt;
&lt;br&gt;
I posted a download link for the version of the database I have.&lt;br&gt;
&lt;br&gt;
[url=http://forum.strataframe.net/FindPost26630.aspx]http://forum.strataframe.net/FindPost26630.aspx[/url]</description><pubDate>Thu, 25 Mar 2010 17:29:22 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26629.aspx</link><description>Trent,&lt;/P&gt;&lt;P&gt;I am just a beginner, so I am not sure about this report, but in the StrataFlix database I do not see a PeopleImages table relating to the PeopleImagesBO.&amp;nbsp; I think this is what is causing an "Invalid object name 'PeopleImages'" error when trying to LoadAllPeopleData.&lt;/P&gt;&lt;P&gt;Sam Tenney</description><pubDate>Thu, 25 Mar 2010 16:26:03 GMT</pubDate><dc:creator>Sam Tenney</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26628.aspx</link><description>Hi Edhy,&lt;/P&gt;&lt;P&gt;Thanks for the stored procedure, but after successfully creating the stored procedure, I am now getting another error.&amp;nbsp; The error is:&lt;/P&gt;&lt;P&gt;Invalid object name 'PeopleImages'.&lt;/P&gt;&lt;P&gt;I am just a beginner and have no idea why this is happening.&lt;/P&gt;&lt;P&gt;Sam&amp;nbsp;Tenney</description><pubDate>Thu, 25 Mar 2010 13:34:22 GMT</pubDate><dc:creator>Sam Tenney</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26331.aspx</link><description>I will repost this database when the next update is posted.  Sorry for the trouble! :crazy:</description><pubDate>Mon, 08 Mar 2010 09:26:57 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26309.aspx</link><description>I'm having the same issue and I downloaded it this morning.</description><pubDate>Fri, 05 Mar 2010 11:38:06 GMT</pubDate><dc:creator>Larry Caylor</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26266.aspx</link><description>OK, I will take a look at this and see what is going on.</description><pubDate>Tue, 02 Mar 2010 08:49:52 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26265.aspx</link><description>Yes...I downloaded and reinstalled it yesterday.  It is still not showing up.</description><pubDate>Tue, 02 Mar 2010 07:23:49 GMT</pubDate><dc:creator>Bill Cunnien</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26261.aspx</link><description>Hmmm....Edhy is getting you going but I am concerned that you don't have the most recent.  Did you download this from the My Account area?</description><pubDate>Mon, 01 Mar 2010 15:34:45 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26258.aspx</link><description>Hi Bill,&lt;br&gt;
&lt;br&gt;
Here is the sp:&lt;br&gt;
&lt;br&gt;
[codesnippet]&lt;br&gt;
USE [StrataFlix]&lt;br&gt;
GO&lt;br&gt;
&lt;br&gt;
/****** Object:  StoredProcedure [dbo].[PeopleMaintenance_RetrieveAllData]    Script Date: 03/01/2010 14:00:55 ******/&lt;br&gt;
SET ANSI_NULLS ON&lt;br&gt;
GO&lt;br&gt;
&lt;br&gt;
SET QUOTED_IDENTIFIER ON&lt;br&gt;
GO&lt;br&gt;
&lt;br&gt;
CREATE PROCEDURE [dbo].[PeopleMaintenance_RetrieveAllData] @peoplePk INT,&lt;br&gt;
@includePeople BIT&lt;br&gt;
AS&lt;br&gt;
BEGIN&lt;br&gt;
&lt;br&gt;
-- Determine if the people result set should be included&lt;br&gt;
IF @includePeople = 1&lt;br&gt;
	BEGIN&lt;br&gt;
		-- Retrieve the people data result set&lt;br&gt;
		SELECT &lt;br&gt;
			* &lt;br&gt;
		FROM People&lt;br&gt;
		WHERE pl_pk = @peoplePk;&lt;br&gt;
	END&lt;br&gt;
&lt;br&gt;
-- Retrieve all of the movies (filmography) for the person&lt;br&gt;
SELECT&lt;br&gt;
	MovieCast.*,&lt;br&gt;
	Movies.mv_Title, &lt;br&gt;
	Movies.mv_Year&lt;br&gt;
FROM MovieCast&lt;br&gt;
	LEFT JOIN Movies ON mc_mv_pk = mv_pk&lt;br&gt;
WHERE mc_pl_pk = @peoplePk&lt;br&gt;
ORDER BY Movies.mv_Year;&lt;br&gt;
&lt;br&gt;
-- Retrieve the images associated with the people&lt;br&gt;
SELECT&lt;br&gt;
	*&lt;br&gt;
FROM PeopleImages&lt;br&gt;
WHERE pli_pl_pk = @peoplePk;&lt;br&gt;
&lt;br&gt;
END&lt;br&gt;
GO&lt;br&gt;
&lt;br&gt;
EXEC sys.sp_addextendedproperty @name=N'DDT_Priority', @value=10 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'PROCEDURE',@level1name=N'PeopleMaintenance_RetrieveAllData'&lt;br&gt;
GO&lt;br&gt;
&lt;br&gt;
[/codesnippet]&lt;br&gt;</description><pubDate>Mon, 01 Mar 2010 13:37:40 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26255.aspx</link><description>No.  It is not located in the list of sprocs.</description><pubDate>Mon, 01 Mar 2010 13:09:54 GMT</pubDate><dc:creator>Bill Cunnien</dc:creator></item><item><title>RE: StrataFlix: Error Searching People</title><link>http://forum.strataframe.net/FindPost26252.aspx</link><description>Is that sproc in the database you have?  You can find it through SSMS in the programmability area.</description><pubDate>Mon, 01 Mar 2010 12:48:19 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item></channel></rss>