Drop Table

Support Forum for database administrators and web based access to important newsgroups related to databases
Register on Database Support Forum Edit your profileCalendarFind other Database Support forum membersFrequently Asked QuestionsSearch this forum -> 
For Database admins: Free Database-related Magazines Now Free shipping to Texas


Post New Thread










Thread
Author

Auto-refresh the output of the 'Open Table" action
I checked the options in SQL 2005 Management Studio and it does not appear t
o be an
available functionality.

Is it possible to have the output of the "Open table" action to refresh the 
output at a
specified interval?

Thanks.

Report this thread to moderator Post Follow-up to this message
Old Post
Gaetan
03-16-06 01:24 AM


Re: Auto-refresh the output of the 'Open Table" action
Probably not as it was never designed for that.  There are few reasons to
use that functionality in the first place.  The query editior is far more
flexible and does not run the risk of editing data by mistake just from
viewing the data.

--
Andrew J. Kelly  SQL MVP


"Gaetan" <me@somewhere.com> wrote in message
 news:ge2h125kt8381rl
 s43qv4ie3181j1c981r@
4ax.com...
>I checked the options in SQL 2005 Management Studio and it does not appear
>to be an
> available functionality.
>
> Is it possible to have the output of the "Open table" action to refresh
> the output at a
> specified interval?
>
> Thanks.



Report this thread to moderator Post Follow-up to this message
Old Post
Andrew J. Kelly
03-16-06 01:24 AM


Re: Auto-refresh the output of the 'Open Table" action
I understand the limitations of "Open table". The Query Editor is far more f
lexible but
unless I missed something, it too does not allow the SQL statements to be au
to-rerun at
configurable interval.



On Wed, 15 Mar 2006 19:52:00 -0500, "Andrew J. Kelly" < sqlmvpnooospam@shadh
a
wk.com> wrote:

>Probably not as it was never designed for that.  There are few reasons to
>use that functionality in the first place.  The query editior is far more
>flexible and does not run the risk of editing data by mistake just from
>viewing the data.

Report this thread to moderator Post Follow-up to this message
Old Post
Gaetan
03-17-06 01:24 AM


Re: Auto-refresh the output of the 'Open Table" action
Not as a built in feature but a simple while loop will do it for you.  This
will rerun the query every to seconds for 10 loops.  Or what ever you need
it to do.

DECLARE @X INT
SET @X = 0

WHILE @x < 10
BEGIN
SELECT *****

WAITFOR DELAY '00:00:10'
END




--
Andrew J. Kelly  SQL MVP


"Gaetan" <me@somewhere.com> wrote in message
 news:6kej12dd7b63n4c
 q7tr61j26iejd9g7pv9@
4ax.com...
>I understand the limitations of "Open table". The Query Editor is far more
>flexible but
> unless I missed something, it too does not allow the SQL statements to be
> auto-rerun at
> configurable interval.
>
>
>
> On Wed, 15 Mar 2006 19:52:00 -0500, "Andrew J. Kelly"
> < sqlmvpnooospam@shadh
awk.com> wrote:
> 



Report this thread to moderator Post Follow-up to this message
Old Post
Andrew J. Kelly
03-17-06 01:24 AM


Sponsored Links





Last Thread Next Thread
Post New Thread

MS SQL Server Tools archive

Show a Printable Version Email This Page to Someone! Receive updates to this thread
Microsoft SQL Server
Access database support
PostgreSQL Replication
SQL Server ODBC
FoxPro Support
PostgreSQL pgAdmin
SQL Server Clustering
MySQL ODBC
Web Applications with dBASE
SQL Server CE
MySQL++
Sybase Database Support
MS SQL Full Text Search
PostgreSQL Administration
SQL Anywhere support
DB2 UDB Database
Paradox Database Support
Filemaker Database
Berkley DB
SQL 2000/2000i database
ASE Database
Forum Jump:
All times are GMT. The time now is 09:28 AM.

 
Mobile devices forum | Database support forum archive




Copyrights DropTable.com Database Support Forum 2004 - 2006