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
2 answers

Where is #Temp Stored ? OR How is #temp Stored

I know #temp is temp. Table valid for particular session only. but if i define #temp in two different session, and run them simultaneously will that conflict. if no then how actually these tables are stored in memory. And how is that different from…
Ashutosh Arya
  • 1,138
  • 2
  • 8
  • 14
0
votes
2 answers

Joining single column two tables in to another table with two columns and Converting in to Integer?

I have two #temp tables with single column I need to transfer both those columns into new #temp table by converting one column in to INT? #ProductID Pid 4 7 8 9 23 88 #Name Name tom jerry harry jim jack jones How can insert in to new temp table…
vision
  • 415
  • 2
  • 4
  • 12
0
votes
2 answers

How do I clean up the temp files created by SharpZipLib

When I create a zip file using SharpZipLib I end up with .tmp files litering my hard drive. It occurs when I add files to an archive. I'm not too concerned that it's happening, but I'd like to be able to get the file name so that I can remove the…
Brad Bruce
  • 7,638
  • 3
  • 39
  • 60
0
votes
1 answer

Can you tell me how to make equal spacing above and below my homepage gallery

Im using a template based site, with added css. So I dont have any code to add, other than below. Here is my site im trying to fix. The code below is what i added to fix the spacing above my homepage gallery, and it messed up the space below the…
Jeff Dowell
  • 125
  • 2
  • 12
0
votes
2 answers

c# handling paths -> System.IO.Path.GetTempFileName()

IO.Path.GetTempFileName() in a c# application it's supposed to create a temp file and return the full path and filename, but the problem that i'm facing is that it ruturns the path with a double slash, just like…
ghfhdfghdfgh
  • 9
  • 1
  • 3
0
votes
1 answer

where do I find page source of pages on my system which I opened in Chrome and then Closed

I was working on a blog page and by mistake deleted most of my work and then closed the tab. Now I'm trying to sneak into my MAC to find some temp files in which Chrome might be storing the source of fetched pages. Can someone help?
0
votes
2 answers

Populate table where columns match | TSQL

This is my main table: select Name, Age, Race, from Person I create a temp table based on what is available in my XML file, thus the temp table might have all of the fields in my table Person or just 1 or just 2 in a mix order. Select * from…
Etienne
  • 7,141
  • 42
  • 108
  • 160
0
votes
1 answer

Dynamic SQL Command push into Temp table

I need to push the results from this code below into a undefined TEMP table. Temp table must be undefined because I wont know the column names of the result set . declare @sql varchar(4000) set @sql ='Select * from #Test' exec (@sql) --Need to…
Etienne
  • 7,141
  • 42
  • 108
  • 160
0
votes
2 answers

Get $_FILES temp name (of the binary file)

i'm in trouble this is an example of $_FILES['file']['tmp_name'] /Applications/XAMPP/xamppfiles/temp/phpjCag18 i would like to get the temp binary filename so in this case phpjCag18 Is there anyway to get it from the $_FILES[]? Ho to get it clean…
itsme
  • 48,972
  • 96
  • 224
  • 345
0
votes
1 answer

How to repair "The type 'CrystalReportsFile' already contains a definition for 'Parameter_name' on ASP.NET C#?

I have been encountering this exception when I try to either run or rebuild a solution containing a Crystal Reports File. The error is in a file that is located in c:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET…
Victor
  • 1,108
  • 9
  • 29
  • 53
0
votes
2 answers

How to Compare Fields in same table defined by WHERE clause

I am trying to compare product_models in a product table between 2 different manufacturers. I found the same product has 2 different product_model numbers. Similar but still different. For example CNELD-1004 from Manufacturers 1 (ELD) is the same…
kipper
  • 1
  • 2
0
votes
1 answer

How to avoid httpd.exe from creating etilqs in C\WINDOWS\TEMP\?

I have Apache 2.4 installed in my computer and I use a localhost web application. This application uses a sqlite database (through PHP PDO), which was small at the beginning but now it has 66518 rows. For a while, when I run SELECT Z.A,B,C,D,(SELECT…
Oriol
  • 274,082
  • 63
  • 437
  • 513
0
votes
1 answer

Working with templates

Im currently studying c++ templates and there's something I don't understand. So far I understand if you have the following generic class template class A{ ... } To provide a specific specialization of the class, say for…
Adeeb
  • 1,271
  • 3
  • 16
  • 33
0
votes
2 answers

Where does Path.GetTempFileName(...) create files under XP?

Under Vista when you call GetTempFilePath files get created in: C:\Users\User\AppData\Local\Temp\ Does anyone know where they get created under XP?
Jan Bannister
  • 4,859
  • 8
  • 38
  • 45
0
votes
1 answer

Error on displaying asp.net page

Getting error on remote server while redirected on certain asp.net web page. In log file : -
Joonas Püüa
  • 370
  • 3
  • 5
  • 18