Viewing 15 posts - 196 through 210 (of 395 total)
Or:
begin
declare @sql nvarchar(1024)
set @sql='xcopy "d:\mssql\BACKUP\*.bak" \\MyServer\backup /V /R /K /Y /Z /I'
EXECUTE xp_cmdshell @sql
end
July 12, 2006 at 12:02 pm
see if that helps: http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=65&messageid=287820
July 7, 2006 at 3:32 pm
correction: defrag database should read as dbcc shrinkdatabase
June 30, 2006 at 3:33 pm
LSN has to match. Unless there is a program which can do that...Next time think about making Diff backup at least once a day. By the way, can you restore missing...
June 30, 2006 at 11:23 am
I would agree with Noel. Some time ago from our 900GB database we archived about 200gb and decided to defrag database. Defrag ran for over 20 hours and it was no way to...
June 30, 2006 at 11:20 am
See if you have white space to performing that...
See if you can use shrinkdatabase instead of shrinkfile, but it takes longer...
June 16, 2006 at 1:05 pm
40,000 In Clause elements in the above example I can get back literally within few seconds...
June 16, 2006 at 12:08 pm
insert your data from the IN Clause into temp table ( make sure temp table has an index)
And then make join between temp table and perm table and your performance...
June 16, 2006 at 12:04 pm
Or:
Set objComputer = CreateObject("WScript.NetWork")
MsgBox(objComputer.ComputerName)
Set objComputer = Nothing
June 1, 2006 at 5:12 pm
From my personal experience with LiteSpeed: you can do backups of individ tables, but somehow restore doesn't work ( but it supposed to work!)
June 1, 2006 at 12:09 pm
Did you try running trace while this package is executing?
May 25, 2006 at 3:59 pm
User accounts used to start the agents on both machines has to have privileges to read & write to the share folder where Tr logs are stored...
May 12, 2006 at 3:08 pm
Did you try the following?:
EXE sp_insertRecord 4, 'ER Vol 1', 'DVD'
GO
EXE sp_insertRecord 5, 'ER', 'VHS'
GO
EXE sp_insertRecord 6, 'Sixth Sense', 'DVD'
GO
--- Delete record with...
May 11, 2006 at 11:56 am
try to run SQL Server trace ( as opposed to SQL Profiler which is the client-side implementation)...and see if it is produces less load...
May 3, 2006 at 11:34 am
You might want to take care of this problem on the front end using smth like that:
replace(CStr(Request.Form("LastName")),"'", "''") when inserting into DB.
May 2, 2006 at 11:54 am
Viewing 15 posts - 196 through 210 (of 395 total)