<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Alteryx App runs fine in Designer but fails in Server in Alteryx Server Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/911138#M10477</link>
    <description>&lt;P&gt;--------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) &amp;lt;ipython-input-2-61150c278137&amp;gt; in &amp;lt;module&amp;gt; 42 width = Inches(10) 43 ---&amp;gt; 44 pic1 = slide1.shapes.add_picture(img_path1, left, 45 top, height = height, width = width) 46 pic2 = slide2.shapes.add_picture(img_path2, left, c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\shapes\shapetree.py in add_picture(self, image_file, left, top, width, height) 330 without regard to its native aspect ratio. 331 """ --&amp;gt; 332 image_part, rId = self.part.get_or_add_image_part(image_file) 333 pic = self._add_pic_from_image_part(image_part, rId, left, top, width, height) 334 self._recalculate_extents() c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\parts\slide.py in get_or_add_image_part(self, image_file) 37 relationship already exists, they are reused, otherwise they are newly created. 38 """ ---&amp;gt; 39 image_part = self._package.get_or_add_image_part(image_file) 40 rId = self.relate_to(image_part, RT.IMAGE) 41 return image_part, rId c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\package.py in get_or_add_image_part(self, image_file) 34 otherwise a new one is created. 35 """ ---&amp;gt; 36 return self._image_parts.get_or_add_image_part(image_file) 37 38 def get_or_add_media_part(self, media): c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\package.py in get_or_add_image_part(self, image_file) 149 that instance is returned, otherwise a new image part is created. 150 """ --&amp;gt; 151 image = Image.from_file(image_file) 152 image_part = self._find_by_sha1(image.sha1) 153 return ImagePart.new(self._package, image) if image_part is None else image_part c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\parts\image.py in from_file(cls, image_file) 160 if is_string(image_file): 161 # treat image_file as a path --&amp;gt; 162 with open(image_file, "rb") as f: 163 blob = f.read() 164 filename = os.path.basename(image_file) FileNotFoundError: [Errno 2] No such file or directory: '//vc2crtp2602830/WSA/Landing Page.png'&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) &amp;lt;ipython-input-2-802b8b79873a&amp;gt; in &amp;lt;module&amp;gt; 2 from ayx import Alteryx 3 from PyPDF2 import PdfFileMerger ----&amp;gt; 4 df=Alteryx.read("#1") 5 vInputFile = df['File Path'].iloc[0] 6 vFilename=df['Output File Name'].iloc[0] c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\ayx\export.py in read(incoming_connection_name, debug, **kwargs) 33 When running the workflow in Alteryx, this function will convert incoming data streams to pandas dataframes when executing the code written in the Python tool. When called from the Jupyter notebook interactively, it will read in a copy of the incoming data that was cached on the previous run of the Alteryx workflow. 34 """ ---&amp;gt; 35 return __CachedData__(debug=debug).read(incoming_connection_name, **kwargs) 36 37 c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\ayx\CachedData.py in read(self, incoming_connection_name) 304 try: 305 # get the data from the sql db (if only one table exists, no need to specify the table name) --&amp;gt; 306 data = db.getData() 307 # print success message 308 print("".join(["SUCCESS: ", msg_action])) c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\ayx\Datafiles.py in getData(self, data, metadata) 498 if data is None: 499 # read in data as a list of numpy ndarrays --&amp;gt; 500 data = self.connection.read_nparrays() 501 # check if data is a list of numpy structs 502 elif isinstance(data, list) and all( RuntimeError: DataWrap2WrigleyDb::GoRecord: Attempt to seek past the end of the file&lt;/P&gt;</description>
    <pubDate>Tue, 08 Mar 2022 21:29:19 GMT</pubDate>
    <dc:creator>mohdfaraz47</dc:creator>
    <dc:date>2022-03-08T21:29:19Z</dc:date>
    <item>
      <title>Alteryx App runs fine in Designer but fails in Server</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/911123#M10476</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have an App that currently runs fine in designer but when scheduling in Gallery it fails. After many trials and errors with AYX support we were able to find one thing that we need to test to rule this out i.e. When the APP is running it creates&amp;nbsp; PDF/PNG's in the folder where the APP is saved but for Server as it runs in the temporary engine space AYX told us that it could be that they python code that comes after the download tool step is unable to find the files PDF and PNG in the server directory where pythoon tool is looking as its because the files are created in engine space and python tool is looking in a directory specified by us so to tackle this we need to do 1)Either move the files from temp space to the directory we specified in python tool.&amp;nbsp; or 2) Use the engine path in the python tool so that the code can look into the temp engine folder for PDF/ PNG and then do the post processing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way I can use the temp path in the python code .&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mohdfaraz47_0-1646771844081.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/225543i10A67932B89B07BA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mohdfaraz47_0-1646771844081.png" alt="mohdfaraz47_0-1646771844081.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;from ayx import Alteryx&lt;BR /&gt;from ayx import Package&lt;BR /&gt;from pptx import Presentation&lt;BR /&gt;from pptx.util import Inches&lt;BR /&gt;&lt;BR /&gt;# Giving Images path&lt;BR /&gt;img_path1 = '//vc2crtp2602830/WSA/Landing Page.png'&lt;BR /&gt;img_path2 = '//vc2crtp2602830/WSA/IT 01_1.png'&lt;BR /&gt;img_path3 = '//vc2crtp2602830/WSA/IT 01_2.png'&lt;BR /&gt;img_path4 = '//vc2crtp2602830/WSA/IT 02.png'&lt;BR /&gt;img_path5 = '//vc2crtp2602830/WSA/IT 03.png'&lt;BR /&gt;img_path6 = '//vc2crtp2602830/WSA/IT 04_1.png'&lt;BR /&gt;img_path7 = '//vc2crtp2602830/WSA/IT 04_2.png'&lt;BR /&gt;img_path8 = '//vc2crtp2602830/WSA/IT 05.png'&lt;BR /&gt;img_path9 = '//vc2crtp2602830/WSA/IT 06.png'&lt;BR /&gt;img_path10 = '//vc2crtp2602830/WSA/IT 07_1.png'&lt;BR /&gt;img_path11 = '//vc2crtp2602830/WSA/IT 07_2.png'&lt;BR /&gt;img_path12 = '//vc2crtp2602830/WSA/IT 08.png'&lt;BR /&gt;# Creating an Presentation object&lt;BR /&gt;ppt = Presentation()&lt;BR /&gt;&lt;BR /&gt;# Selecting blank slide&lt;BR /&gt;blank_slide_layout = ppt.slide_layouts[6]&lt;BR /&gt;&lt;BR /&gt;# Attaching slides to ppt&lt;BR /&gt;slide1 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide2 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide3 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide4 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide5 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide6 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide7 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide8 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide9 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide10 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide11 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;slide12 = ppt.slides.add_slide(blank_slide_layout)&lt;BR /&gt;# adding images&lt;BR /&gt;top = Inches(0)&lt;BR /&gt;left = Inches(0)&lt;BR /&gt;height = Inches(7.5)&lt;BR /&gt;width = Inches(10)&lt;BR /&gt;&lt;BR /&gt;pic1 = slide1.shapes.add_picture(img_path1, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic2 = slide2.shapes.add_picture(img_path2, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic3 = slide3.shapes.add_picture(img_path3, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic4 = slide4.shapes.add_picture(img_path4, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic5 = slide5.shapes.add_picture(img_path5, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic6 = slide6.shapes.add_picture(img_path6, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic7 = slide7.shapes.add_picture(img_path7, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic8 = slide8.shapes.add_picture(img_path8, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic9 = slide9.shapes.add_picture(img_path9, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic10 = slide10.shapes.add_picture(img_path10, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic11 = slide11.shapes.add_picture(img_path11, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;pic12 = slide12.shapes.add_picture(img_path12, left,&lt;BR /&gt;top, height = height, width = width)&lt;BR /&gt;# save file&lt;BR /&gt;ppt.save('\\vc2crtp2602830\WSA\Investment/Trends.pptx')&lt;BR /&gt;&lt;BR /&gt;print("Done")&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 21:03:34 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/911123#M10476</guid>
      <dc:creator>mohdfaraz47</dc:creator>
      <dc:date>2022-03-08T21:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Alteryx App runs fine in Designer but fails in Server</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/911138#M10477</link>
      <description>&lt;P&gt;--------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) &amp;lt;ipython-input-2-61150c278137&amp;gt; in &amp;lt;module&amp;gt; 42 width = Inches(10) 43 ---&amp;gt; 44 pic1 = slide1.shapes.add_picture(img_path1, left, 45 top, height = height, width = width) 46 pic2 = slide2.shapes.add_picture(img_path2, left, c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\shapes\shapetree.py in add_picture(self, image_file, left, top, width, height) 330 without regard to its native aspect ratio. 331 """ --&amp;gt; 332 image_part, rId = self.part.get_or_add_image_part(image_file) 333 pic = self._add_pic_from_image_part(image_part, rId, left, top, width, height) 334 self._recalculate_extents() c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\parts\slide.py in get_or_add_image_part(self, image_file) 37 relationship already exists, they are reused, otherwise they are newly created. 38 """ ---&amp;gt; 39 image_part = self._package.get_or_add_image_part(image_file) 40 rId = self.relate_to(image_part, RT.IMAGE) 41 return image_part, rId c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\package.py in get_or_add_image_part(self, image_file) 34 otherwise a new one is created. 35 """ ---&amp;gt; 36 return self._image_parts.get_or_add_image_part(image_file) 37 38 def get_or_add_media_part(self, media): c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\package.py in get_or_add_image_part(self, image_file) 149 that instance is returned, otherwise a new image part is created. 150 """ --&amp;gt; 151 image = Image.from_file(image_file) 152 image_part = self._find_by_sha1(image.sha1) 153 return ImagePart.new(self._package, image) if image_part is None else image_part c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\parts\image.py in from_file(cls, image_file) 160 if is_string(image_file): 161 # treat image_file as a path --&amp;gt; 162 with open(image_file, "rb") as f: 163 blob = f.read() 164 filename = os.path.basename(image_file) FileNotFoundError: [Errno 2] No such file or directory: '//vc2crtp2602830/WSA/Landing Page.png'&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) &amp;lt;ipython-input-2-802b8b79873a&amp;gt; in &amp;lt;module&amp;gt; 2 from ayx import Alteryx 3 from PyPDF2 import PdfFileMerger ----&amp;gt; 4 df=Alteryx.read("#1") 5 vInputFile = df['File Path'].iloc[0] 6 vFilename=df['Output File Name'].iloc[0] c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\ayx\export.py in read(incoming_connection_name, debug, **kwargs) 33 When running the workflow in Alteryx, this function will convert incoming data streams to pandas dataframes when executing the code written in the Python tool. When called from the Jupyter notebook interactively, it will read in a copy of the incoming data that was cached on the previous run of the Alteryx workflow. 34 """ ---&amp;gt; 35 return __CachedData__(debug=debug).read(incoming_connection_name, **kwargs) 36 37 c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\ayx\CachedData.py in read(self, incoming_connection_name) 304 try: 305 # get the data from the sql db (if only one table exists, no need to specify the table name) --&amp;gt; 306 data = db.getData() 307 # print success message 308 print("".join(["SUCCESS: ", msg_action])) c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\ayx\Datafiles.py in getData(self, data, metadata) 498 if data is None: 499 # read in data as a list of numpy ndarrays --&amp;gt; 500 data = self.connection.read_nparrays() 501 # check if data is a list of numpy structs 502 elif isinstance(data, list) and all( RuntimeError: DataWrap2WrigleyDb::GoRecord: Attempt to seek past the end of the file&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 21:29:19 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/911138#M10477</guid>
      <dc:creator>mohdfaraz47</dc:creator>
      <dc:date>2022-03-08T21:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Alteryx App runs fine in Designer but fails in Server</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/912230#M10493</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/31899"&gt;@mohdfaraz47&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;
&lt;P&gt;You tried to run it from the designer in the server machine as well?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If yes and that runs ok from there, look if your server is configured to run as a different user, maybe that user don't have access to the path you're setting to get the image files.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 17:44:59 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/912230#M10493</guid>
      <dc:creator>marcusblackhill</dc:creator>
      <dc:date>2022-03-10T17:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Alteryx App runs fine in Designer but fails in Server</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/913338#M10506</link>
      <description>&lt;P&gt;Hello Marcus, Yes I did. Designer it works totally fine. Its only when its run from Gallery or when it is being scheduled. Any help is appreciated. We checked and the run as user has all the necessary permissions.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 02:59:51 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/913338#M10506</guid>
      <dc:creator>mohdfaraz47</dc:creator>
      <dc:date>2022-03-14T02:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Alteryx App runs fine in Designer but fails in Server</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/913422#M10508</link>
      <description>&lt;P&gt;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/31899"&gt;@mohdfaraz47&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see, try to add the installation code to your script. Maybe that package isn't installed in the run as user. If that fails to install, cehck your proxy settings in the server machine.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 12:00:23 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/913422#M10508</guid>
      <dc:creator>marcusblackhill</dc:creator>
      <dc:date>2022-03-14T12:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Alteryx App runs fine in Designer but fails in Server</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/913463#M10511</link>
      <description>&lt;P&gt;Yep we ensured that the correct libs are installed in the Server, That is not the issue. The error code when I run the app is as follows:&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) &amp;lt;ipython-input-2-61150c278137&amp;gt; in &amp;lt;module&amp;gt; 42 width = Inches(10) 43 ---&amp;gt; 44 pic1 = slide1.shapes.add_picture(img_path1, left, 45 top, height = height, width = width) 46 pic2 = slide2.shapes.add_picture(img_path2, left, c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\shapes\shapetree.py in add_picture(self, image_file, left, top, width, height) 330 without regard to its native aspect ratio. 331 """ --&amp;gt; 332 image_part, rId = self.part.get_or_add_image_part(image_file) 333 pic = self._add_pic_from_image_part(image_part, rId, left, top, width, height) 334 self._recalculate_extents() c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\parts\slide.py in get_or_add_image_part(self, image_file) 37 relationship already exists, they are reused, otherwise they are newly created. 38 """ ---&amp;gt; 39 image_part = self._package.get_or_add_image_part(image_file) 40 rId = self.relate_to(image_part, RT.IMAGE) 41 return image_part, rId c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\package.py in get_or_add_image_part(self, image_file) 34 otherwise a new one is created. 35 """ ---&amp;gt; 36 return self._image_parts.get_or_add_image_part(image_file) 37 38 def get_or_add_media_part(self, media): c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\package.py in get_or_add_image_part(self, image_file) 149 that instance is returned, otherwise a new image part is created. 150 """ --&amp;gt; 151 image = Image.from_file(image_file) 152 image_part = self._find_by_sha1(image.sha1) 153 return ImagePart.new(self._package, image) if image_part is None else image_part c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\pptx\parts\image.py in from_file(cls, image_file) 160 if is_string(image_file): 161 # treat image_file as a path --&amp;gt; 162 with open(image_file, "rb") as f: 163 blob = f.read() 164 filename = os.path.basename(image_file) FileNotFoundError: [Errno 2] No such file or directory: '//vc2crtp2602830/WSA/Landing Page.png'&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) &amp;lt;ipython-input-2-802b8b79873a&amp;gt; in &amp;lt;module&amp;gt; 2 from ayx import Alteryx 3 from PyPDF2 import PdfFileMerger ----&amp;gt; 4 df=Alteryx.read("#1") 5 vInputFile = df['File Path'].iloc[0] 6 vFilename=df['Output File Name'].iloc[0] c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\ayx\export.py in read(incoming_connection_name, debug, **kwargs) 33 When running the workflow in Alteryx, this function will convert incoming data streams to pandas dataframes when executing the code written in the Python tool. When called from the Jupyter notebook interactively, it will read in a copy of the incoming data that was cached on the previous run of the Alteryx workflow. 34 """ ---&amp;gt; 35 return __CachedData__(debug=debug).read(incoming_connection_name, **kwargs) 36 37 c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\ayx\CachedData.py in read(self, incoming_connection_name) 304 try: 305 # get the data from the sql db (if only one table exists, no need to specify the table name) --&amp;gt; 306 data = db.getData() 307 # print success message 308 print("".join(["SUCCESS: ", msg_action])) c:\program files\alteryx\bin\miniconda3\envs\designerbasetools_venv\lib\site-packages\ayx\Datafiles.py in getData(self, data, metadata) 498 if data is None: 499 # read in data as a list of numpy ndarrays --&amp;gt; 500 data = self.connection.read_nparrays() 501 # check if data is a list of numpy structs 502 elif isinstance(data, list) and all( RuntimeError: DataWrap2WrigleyDb::GoRecord: Attempt to seek past the end of the file&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 12:48:43 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Alteryx-App-runs-fine-in-Designer-but-fails-in-Server/m-p/913463#M10511</guid>
      <dc:creator>mohdfaraz47</dc:creator>
      <dc:date>2022-03-14T12:48:43Z</dc:date>
    </item>
  </channel>
</rss>

