Ask a Question related to ASP Database, Design and Development.
-
Shawn #1
Schedule maitenance or temp tables
I'm developing a content management system to use for the
web. I want to allow users to alter data, delete data,
and add data for each individual user so that when a new
user comes to the area, they will have a clean slate to
start from opposed to seeing what the other users have
done. If I do use temp tables, they will only be vaild
until the user session expires, correct?
Is the best way to accomplish that by using temp tables or
should I schedule a truncate table at periodic intervals?
Thanks a million!!!
Shawn Guest
-
SP Temp Tables
Hi All, I am creating temp tables and dropping them after the processing is done in a stored procedure , however if users abort and try to run... -
Dynamic identification of Informix temp tables
I would like to develop a process which can determine if there were temp tables created during my current database connection. I am the system... -
Temp tables and jdbc 2.21.jc3 on IDS 9.4.UC1
The following query uses a TEMP table. I get the results in dbaccess, but the query fails when submitted from a java program using JDBC 2.21.jc3...... -
Accessing Temp Tables
Hello Graham, You could try using global temp tables with a "##", in your case it would be - ##UserAccess. K "Graz79"... -
Question about optimizer with (big) temp tables
If I ask query analyser to give me an estimated query plan, how does it work this out since my temp table will only be populated when I fire the... -
Aaron Bertrand - MVP #2
Re: Schedule maitenance or temp tables
> Is the best way to accomplish that
Accomplish what? How long do you want the data to persist? How often do
you want to clean it out?
Aaron Bertrand - MVP Guest
-
Shawn #3
Re: Schedule maitenance or temp tables
Well I want every new user that comes to the website to be
able to give the system a test run with their own data.
So I guess my best solution would be to create it with
temp tables. But then the problem I see is that each time
a user comes to the website, behind the scenes the
overhead of creating the temp tables and stored procedures
come into play.
Currently I have it to where anyone can add, modify,
delete content from the system, but once they leave I
don't want their data to persist. So instead of making
temp tables, should I just datetimestamp when they altered
data then delete all the data for the day or use temp
tables?
persist? How often do>-----Original Message----->>> Is the best way to accomplish that
>Accomplish what? How long do you want the data to>you want to clean it out?
>
>
>.
>Shawn Guest



Reply With Quote

