Questions tagged [temp]

A common directory on a file system which acts as a "scratch area" that can be used to hold files and directories for short periods of time.

When a file system is executing some process, it is often desirable to record information outside of registers/RAM and save them into memory. However, if these files are not intended to be permanently stored, a temporary "temp" directory may used to facilitate the storage/disposal of these files. For example, you might have a temp directory which stores logging data, which is regularly cleaned by the OS at discrete intervals.

temp may also refer to individual files, e.g. temp_data.csv which would be a temporary data file in the CSV format.

556 questions
0
votes
1 answer

Can I make a temp table with other temp tables

I'm wondering if I can pull together the data from my other temp tables. I need to be able to run a report for many different people from different departments and then aggregate the data so that I have individual reports, a larger picture of each…
0
votes
2 answers

INSERT results from query into TEMP TABLE

ORIGINAL QUERY: select DISTINCT a.UniversalMemberID, a.Name, a.DOB, a.[First Service Date], (select count(b.UniversalMemberID) from WCV b where b.[First Service Date] <= a.[First Service Date] and a.UniversalMemberID =…
IJ_05
  • 21
  • 1
  • 7
0
votes
1 answer

IIS: There was a problem reading metadata from 'C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files

I am having this most annoying issue when I try to rebuild my solution I get 4 lines of: There was a problem reading metadata from 'C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\MyWebSiteName... I tried restarting IIS, so I…
JL.
  • 78,954
  • 126
  • 311
  • 459
0
votes
1 answer

ASP.NET Temporary folder content

I have a web app hosted in IIS 7.5 with ASP.NET 4.0. Today I updated an existing usercontrol. And when I tried to view the corresponding page the below mentioned error appeared. Compiler Error Message: CS0433: The type…
JCTLK
  • 2,145
  • 8
  • 29
  • 37
0
votes
1 answer

Deleting temporary file using Java runtime.exec function

I'm stuck in a situation. String tmpfolder = System.getProperty("java.io.tmpdir"); \\this is the path C:\Users\biraj\AppData\Local\Temp\ tmpfolder = tmpfolder.replace("\\", "\\\\"); Runtime.getRuntime().exec("cmd /c del "+tmpfolder+"IEDriver.dll…
user1254261
  • 142
  • 2
  • 3
  • 12
0
votes
1 answer

PIVOT and TEMP TABLE

please can you help me put this script into a temp table. i have been working on this for hours and it keeps giving me errors. DECLARE @PivotColumnHeaders VARCHAR(MAX) SELECT @PivotColumnHeaders = COALESCE(@PivotColumnHeaders + ',[' +…
0
votes
1 answer

ObjC Schedule Temporary Directory Delete

I'm sorry, I think this question is much too specific. But anyway, here it goes: I'm making a wrapper for an application, and because my wrapper consumes lots of memory due to the kinds of things it does, it quits when the actual application…
Toon Link
  • 1
  • 2
0
votes
0 answers

RDLC Report works fine for local users;doesn't work elsewhere

App built with VS (WPF and C#). Added RDLC report. Users here have no problem displaying report. Elsewhere error is: 'Set connectionID threw an exception', 'Line number '7' and line position '14'. The users that are not local have no problems…
hmac
  • 3
  • 3
0
votes
3 answers

Delete Files Efficiently Windows C++

I have a long running process that creates a small image (~1-2 kb) and loads it into memory. Because its created using an APK I have to save it to a file before loading it into memory. At that point I no longer need the file. The process can…
Frank Conry
  • 2,694
  • 3
  • 29
  • 35
0
votes
0 answers

Read External Hard Disk Temperature

I found the code for internal hard drives from here but it doesn't seem to work with external ones, sorry, I'm not very experienced with S.M.A.R.T. Is there a way to find out the temp of an external drive through C#?
Bonnev
  • 947
  • 2
  • 9
  • 29
0
votes
1 answer

PHP Uploading a image to a server

I did a upload system and I was testing it on my computer, using a localhost xampp server, it was working fine but I moved it to a host and I get this error: PHP Warning: Unknown: open_basedir restriction in effect. File(C:\Windows\TEMP) is not…
Tsukki
  • 33
  • 5
0
votes
1 answer

Update Table Based Off Temporary Table

In a postrgres system, I have created a temporary table that holds a foreign key value to another table. I am hoping to update another table with information from that temporary table based on the foreign key value in the table I want to update. My…
ZAX
  • 968
  • 3
  • 21
  • 49
0
votes
1 answer

Write to %temp% with python?

I have a small program that works fine on my PC but I want to make it portable. What it does is download an image from the internet, set as desktop background, wait one minute and update the image. I know that I cannot write directly to folders like…
user3315473
  • 183
  • 2
  • 7
0
votes
4 answers

Sorting 3 double values using pointers

I am trying to make a program that orders three double numbers by increasing value using pointers. I am able to print the double values; however, they're not in the right order for most orders. This is what I have: #include void…
Rohit Tigga
  • 2,373
  • 9
  • 43
  • 81
0
votes
4 answers

to separate comma separated values of field and add them in integer field of temp table

I have one table member_details with field "preferred_location" (varchar) that has comma separated values like "19,20,22" that come from a listbox selection .... Now I also have another table city_master having field "city_id" (int) and "city_name"…