The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
41 views

Clear Java cache without control panel

Any ideas how to clear Java cache by Java coding instead of through Control Panel to delete those temp files?
0
votes
1answer
26 views

fully update a temporary table sql

i have a problem: i am trying to fully update a temporary table (in a stored procedure) in SQL Server 2012, but it only updates the first entry that matches my description. here is the code: create ...
1
vote
1answer
31 views

mysql storage in spite of sufficient memory

i have one query which is causing problem and according to google it is because of insufficient temp memory. the same query was working just fine few days back and my website got hacked and after ...
1
vote
0answers
52 views

Ask all turtles but apply to every turtle differently - NetLogo

I'm using net logo and I want to ask all turtles something but apply it to every turtle individually: to setup-t ask turtles [ if color = white [ set t 99 ] if color = red [ set t ...
0
votes
3answers
40 views

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 ...
2
votes
2answers
45 views

How to get temp folder and set a temp file path?

How to get temp folder and set a temp file path? I tried code bellow but it have error. Thank you very much! TCHAR temp_folder [255]; GetTempPath(255, temp_folder); LPSTR temp_file = temp_folder + ...
0
votes
1answer
47 views

How can I change the temp folder where sqlite creates etilqs files?

(This question is a spin-off of 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 ...
0
votes
1answer
30 views

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 ...
0
votes
1answer
32 views

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 T> class A{ ... } To ...
2
votes
1answer
136 views

Get temperature from NVidia GPU using NVAPI

I have been trying for the last few days to get the temperature of my GPU using C++ using the NVAPI i have the following code #include "stdafx.h" #include "nvapi.h" int _tmain(int argc, _TCHAR* ...
-2
votes
1answer
115 views

Reading and Writing Temp Files in PHP and MySQL [closed]

I'm using a temporary text file to submit html web form data to a database. Basically the process is: Submit form data ==> Write form data to temp.txt ==> submit temp.txt data to database. I know how ...
0
votes
2answers
81 views

Java Temporary Files, read and write

I have this piece of code package Classes; import java.io.*; public class IpAdministrator { public Boolean isActive(String ipAddress) { boolean isActive = false; String cmd; ...
0
votes
1answer
67 views

What are the best practices to use Core Data with search API (lots of temporary objects)?

I can't make out this question for months. I turned upside down whole stack overflow tagged core data, looked thought dozens open-source projects and articles, but none of found solutions satisfy me ...
-1
votes
2answers
45 views

Saved file from internet on school computer's temp but temp is denied permissions [closed]

A student downloaded a word file from the internet and opened as a re-only copy then saving to the temp folder. Recently, the admin has denied temp folder permissions. Is there anyways using ICACLS ...
0
votes
1answer
95 views

Queries using temp tables

SELECT 1 FROM geo_locationInfoMajor_tbl WHERE geo_locationInfoM_taluka IN(SELECT * from #temp Basically i have created a temp table which gets its values from the front end.. using a function i ...
0
votes
0answers
35 views

Volume mounted to NTFS folder (C:\Temp) disappears randomly Win 7 Pro

I have my temp directory (C:\Temp - system variable) mounted to an NTFS folder on an SSD (via Diskmanagement > Change or Assign Drive Letters > mount to empty NTFS folder). This mounting behaviour is ...
3
votes
1answer
61 views

how should I understand tmp folder in app bundle? will it be cleared at some moment?

I'm capturing video using my app. I was thinking about saving the captured movie to Documents folder. I've explored project bundle and saw the captured movie is saved 2times. It's in tmp and also in ...
1
vote
2answers
101 views

SQL Server, Error 102, when using CURSOR, creating a dynamic table

I got the following error when using CURSOR in creating temp tables: (1 row(s) affected) Msg 102, Level 15, State 1, Line 1 Incorrect syntax near '?'. Msg 208, Level 16, State 0, Line 33 Invalid ...
0
votes
1answer
59 views

Error on displaying asp.net page

Getting error on remote server while redirected on certain asp.net web page. In log file : <error date="2013-01-25T18:40:09" module="E24PublicPortal" login="-"> ...
0
votes
0answers
99 views

Insert into table, from view, Oracle, unable to extend temp segment

I have the following code in Oracle: insert into table_x select * from view_y; commit; where view_y takes about half an hour to execute and returns about 400 000 records. The problem is when I ...
0
votes
1answer
179 views

Cannot resolve collation conflict between “SQL_Latin1_General_CP1_CI_AS” and “Latin1_General_CI_AS” in equal to operation

I'm truly stumped here. I'm getting the title'd error message when I run the --join-- part of the following query: ---Create temp table to hold data--- CREATE TABLE #Address( [LINE1] nvarchar(256), ...
1
vote
1answer
71 views

Temp files being left over from PHP script on linux/apache

I've just published a client website, it's primary purpose is distributing content from other sources, so it's regularly pulling in text, videos, images and audio from external feeds. It also has an ...
0
votes
1answer
79 views

Easy way to do memory <-> file cache for C++ x86?

I have a hard work to make a existing x64 software into x86 version. It will cost about 6G~10G memory in x64, but it crashes in running x86 version when it costs about 1.5G memory. I'm wondering ...
-1
votes
1answer
360 views

The permissions of “Temp” folder in Windows 7 64-bit keep changing [closed]

I have just bought a new Laptop with Win7 64bit. Recently I encountered some errors, which included not being able to save some files, Windows Installer errors and file extracting probs. I found out ...
1
vote
3answers
171 views

Creating and serving temporary HTML files in Azure

We have an application that we would like to migrate to Azure for scale. There is one place that concerns me before starting however: We have a web page that the user is directed to. The code ...
1
vote
0answers
81 views

Why delete in Oracle takes more time than select also in case 0 rows?

I run simple query: select * from tableA where fk in (select pk from tableB where column='somevalue') It returns 0 rows and takes time near 20 seconds But when I run: delete from tableA where fk ...
1
vote
0answers
34 views

Reduce import database duration

I have a database with a number of tables and data. Inorder to import the database, the query LOAD DATA INFILE <file_name> INTO TABLE <table_name>; for each table is used. The database ...
4
votes
1answer
145 views

How do I open a temporary file AND get its filename?

I need to create a temporary file in my C program, write some data to it, and then invoke an external command (via exec or system) to do some processing on the file I just created. I did not write ...
2
votes
1answer
308 views

Creating a thread-safe temporary file name

When using Tempfile Ruby is creating a file with a thread-safe and inter-process-safe name. I only need a file name in that way. I was wondering if there is a more straight forward approach way than: ...
0
votes
1answer
38 views

Where Should I Store my Temp application data for different OS Versions?

I have an application that run on diffident OS version like(win XP,win 7,win 8). I have a .sdf data base with read-only access,i used Environment.SpecialFolder.Templates for temp path. Temp Path= ...
0
votes
1answer
70 views

Different Execution Plans with same date from temp table

Basically, I have a temp table and I am populating the table with the same data using different techniques in order to find the fastest one in my case. The three methods are: select inserted ...
1
vote
1answer
80 views

Delete system tmp file with COM and Word

I am using COM to convert dynamically created word docx to PDFs. Everything is working perfectly, but our c:\windows\temp\ directory is getting extremely large (and we have limited disk space on our ...
0
votes
1answer
65 views

Getting data from multiple temp tables

I have inserted different values into different temp tables. For example Salesman wise sold particular product. Product wise I have inserted to temp table. But while getting data from temp table ...
2
votes
3answers
301 views

Where is best to delete temporary files in an ASP.net application?

I create several temporary files in my asp.net app, and I need to delete them when the user is done using them. I tried void Session_End(object sender, EventArgs e) { ...
0
votes
2answers
47 views

SQL Comparing Information in Tables

I want to know how I would compare two pieces of information such as say I have two columns in my query: surname and forename. How could I check to see whether the forename exists in the surname ...
0
votes
0answers
218 views

Create and access temp table in Ibatis/Java

I have a code snippet that will need to: Create a temp table. Populate the temp table with an array of integers. Run a proc which joins with the temp table: public List<?> ...
0
votes
1answer
73 views

process.start from a variable location %temp%

I have the program unzipping the file to %temp%\myfolder\ I need to run a file from within that location. I have tried both shell and process.start but ultimately I'm looking for: ...
1
vote
3answers
332 views

How to open a file without saving it to disk

My Question: How do I open a file (in the system default [external] program for the file) without saving the file to disk? My Situation: I have files in my resources and I want to display those ...
0
votes
2answers
115 views

Is it possible write a PHP script that transfers through FTP a file from a user's computer to an FTP server without using HTML file upload?

I'm not sure how common my request is but here goes: I have a client who wants to be able to receive files of up to 2GB in size from their customers. The reason why the files are kind of big is ...
1
vote
1answer
87 views

Copy files from an autoexec jar to java.io.tmpdir

I'm trying to copy two local files from my jar to the java temp dir defines like that : String strDirectoy = System.getProperty("java.io.tmpdir") + path; It works great when I launch it from ...
0
votes
1answer
769 views

Deleting temp folder files with vb.net

I’m trying to programmatically clear out my temps folder however it cant delete files that are in use, which would be okay as long as it would then delete all the files not in use. However my code ...
1
vote
1answer
710 views

Fastest X++ code to populate temp table

I need to loop on InventTrans to cumulate itemId quantities for some dates and populate a temp table with the results in a form using this temp table as datasource. I used a class and the process is ...
1
vote
1answer
190 views

T-Sql getting data from tempdb table

I'm using Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64) and I'm trying to make a SELECT statement to a table that have been created like this: DECLARE @Sql AS VARCHAR(1500) SET @Sql = ...
0
votes
2answers
111 views

PHP Backup & Download

I'd like to create a backup script for files and folders on my server and I found this: # Name of the buckup file $filename = 'BACKUP_' . date('Y.m.d') . '.tar.gz'; # Target path where to save the ...
0
votes
1answer
47 views

Sort information from an object, use php sort method or mysql

Im pulling information from an API, the information is presented as an array of objects, i loop through and pull the information i need, sometimes it involves pulling from several objects for example ...
0
votes
4answers
76 views

where is the temporary variable for map initialization created in following program

In the following code snippet. The static member variable map is initializes using its default constructor. #include <iostream> #include <map> using namespace std; class A { static ...
-1
votes
1answer
85 views

How do I make a unique temporary file to be made for each visitor and store other file pathnames

Basically I am aware that you can make temporary file (lets call it file2) with the tempnam function in PHP. However, i was wondering how they could automatically be deleted when the user leaves the ...
1
vote
1answer
495 views

What can I use instead of #Temp table in sql function

Here is my sql query. CREATE FUNCTION UF_GetOrderProducts ( @OrderId int ) RETURNS VARCHAR(500) AS BEGIN SELECT Identity(int,1,1) ID, ProductId INTO #Temp FROM OrderProduct WHERE OrderId = ...
0
votes
3answers
413 views

SQL Server 2000: select into case when in order by clause

I am trying to select rows into a temporary table with a CASE statement in the ORDER BY clause but records are not being sorted on insert. Declare @orderby varchar(10) , @direction varchar(10) set ...
1
vote
2answers
642 views

Location of Redis' temp file for replication?

I tried to set up a Master-Slave sync on a debian machine. I always get that error in my logs and I can't figure out where the temp file should be =/ [9559] 31 Jul 11:48:17 * Connecting to MASTER... ...

1 2 3 4