Viewing 15 posts - 1,096 through 1,110 (of 2,044 total)
My backup procedure has the following structure
DECLARE @DatabaseName varchar(1000)
DECLARE @BackupLocation varchar(1000)
DECLARE @DayExtension varchar(1000)
/*adding day + time*/
SET @DayExtension =REPLACE(REPLACE(REPLACE(convert(varchar(30),CURRENT_TIMESTAMP,120),'-','_'),':','_'),' ','_')
SET @Backuplocation= '...defaultlocation...'
/*defaultlocation*/
SET @BackupLocation=@Backuplocation+'\'+@DatabaseName+'_'+@DayExtension +'_DIFF.BAK'
BACKUP DATABASE @DatabaseName
TO DISK = @BackupLocation
WITH INIT ,...
January 21, 2008 at 4:47 am
offtopic:
I recommend not to use the sa-account for software.
A. It is a well known superadministrator account.
Because of that:
*There exist alot of program's to crack passwords, having the account name helps.
*Sometimes...
January 20, 2008 at 1:25 am
infact when i m getting disconnected with client, i have to restart the client computer and the connection gets eshtablished again...........
That sounds fishy.
What method do you use when to connect...
January 19, 2008 at 3:10 am
Is this a intermittent error or always?
1)Check if the network connection is primestable
2)Check the integrity of your database. An integrity fault due corruption can cause an aborted connection.
More things to...
January 18, 2008 at 11:48 am
I'll have to recheck it.
What edition of sql server 2000 is it? Standard,Enterprise,.. 32-bit or 64-bit
What edition of windows 2003 is it ? Standard,Enterprise,...
Your problem problably has been discussed on
http://sql-server-performance.com/Community/forums/p/24896/138597.aspx#138597
but...
January 18, 2008 at 11:44 am
insert into #ALLQ
select * --below will be treated as a "table"
from
(
SELECT 'T'+ T334.C2 + RIGHT(T334.C1,7) -- error message point to here
+ @TimeranH +@TimeranM +@TimeranS +@TimeranN,
@user1,C536870929, T.[RANK]
FROM ARSystem.dbo.T334 [T334],...
January 17, 2008 at 2:08 pm
Hello,
You have to specify the format mask of the to_number function.
See
http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/sql_elements004.htm
At second thought, name the columns. Select column1,column... FROM OPENQUERY (... SELECT ... column1,....) in case the columnorder would...
January 16, 2008 at 11:15 am
Hello,
I would encapsulate the union to a table.
The issue is that the variable can only have one value, and sql server can't decide if the values comes from the second,......
January 16, 2008 at 11:07 am
Also check available memory and other applications running on the server.
Anything special in the logs? (sql, windows)
January 15, 2008 at 2:12 pm
Try to run the stored procedure sp_who2 to find out which connections are actually running/sleeping/locked.
DBCC INPUTBUFFER (SPID) gives you the command text.
In addition you could start a sql trace with...
January 15, 2008 at 12:05 pm
You can create an index on computed columns with certain connection settings. The index will store the computed values on disk.
Check "Creating Indexes on Computed Columns" in the books online
January 9, 2008 at 10:29 am
1) Have a backup of the existing udf's,stored procs
2)
You could create a script and execute it on the other server
Enterprise manger->rightclick database->generate sqlscript
->select the udf's/stored procedures
->choose your options (be careful...
January 7, 2008 at 10:32 am
It probably has to do something with the application roles:
Application roles bypass standard permissions.
When an application role is activated for a connection by the application, the connection permanently loses...
January 4, 2008 at 10:27 am
January 3, 2008 at 10:41 am
We had it very often but now at rare moments. Suspects: some backup/replication software keeping the filesystem too busy causing a short network timeout.
Changes made from often to rare:
Updated windows...
January 3, 2008 at 10:35 am
Viewing 15 posts - 1,096 through 1,110 (of 2,044 total)