Viewing 15 posts - 1,831 through 1,845 (of 1,999 total)
the problem is that your stored procedure is returning the nuber of rows inserted into you temp table as the first result (which the app will pick up)
all you...
August 6, 2004 at 9:55 am
we support several systems that fall into these categories.
you were wondering if your front end application will work with a clustered active/active (load balancing) solution - most likely...
August 6, 2004 at 8:30 am
try the query
select name from sysobjects where id=2057058364
this should tell you the table name
August 6, 2004 at 7:53 am
not as far as i'm aware.
but what you could do is set the idle state in SQL AGENT as below 80% for 2 minutes.
what you can then do is perform...
August 6, 2004 at 5:30 am
from books on-line
***********************
SQL Server Agent polls the performance counters at 20-second intervals.
Important Using a frequency higher than 20 seconds increases the processing overhead for SQL Server.
If a counter...
August 6, 2004 at 2:56 am
what operating system are you running on ?
has this problem just recently started happening and it was fine before ? or has it been since you changed the account?
August 5, 2004 at 6:59 am
from books on-line
Before performing a log shipping role change, a maintenance plan for this log shipping pair must exist on the secondary server. A maintenance plan can be created using...
August 5, 2004 at 6:31 am
i take it you want to make a change to the design of the database after you recover it, then you want to apply transactions from your old database.....?
i don't...
August 5, 2004 at 6:08 am
are there any notifications to operators on job completion/failure/success? - if so - is the exchange server available at that time?
if it's not then SQL Mail throws a wobbly can...
August 5, 2004 at 2:48 am
open up query analyzer and run the query
select @@version
make sure you run it with the output to text (not grid) and you'll see your version number
August 3, 2004 at 9:54 am
are there any other jobs running against that database ?
what size is the database? and does sp_who2 give you any info on whether there are locks ?
August 3, 2004 at 9:16 am
i agree, if your security settings aren't 100% correct you could get in real trouble with this.
but in basic form your sp would have the following
declare @strsql nvarchar(1000)
set @strsql='select...
August 3, 2004 at 9:14 am
is the database in simple or full recovery mode ? if it's full then you need to set up a transaction log backup job.
then when the t-log has been...
August 3, 2004 at 9:04 am
Viewing 15 posts - 1,831 through 1,845 (of 1,999 total)