Viewing 15 posts - 301 through 315 (of 1,157 total)
Easiest approach is to use SQLCMD.exe on server A to connect to Server B and then use a backup script in SQLCMD.
This can be scheduled using a SQL Server Agent...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 27, 2010 at 3:32 am
Is the SQL Server service started? You can check it in "SQL Server Configuration Manager"
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 26, 2010 at 9:14 am
John Mitchell-245523 (11/26/2010)
For the first one, look in Job Activity Monitor.
Job Activity Monitor is not available in SQL Server 2000.
Like John mentioned for the second you need to get...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 26, 2010 at 7:07 am
I am not aware of any such issues. All the production instances in my environment are running on SP3 +
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 26, 2010 at 6:46 am
What is the job designed to do? Also try adding an output file to the Job Step. It gives you the complete logging of the job.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 26, 2010 at 6:09 am
vamshikrishnaeee (11/26/2010)
And also I want that ,eventhough anyone shrink the log file and the datafile it don't reduce its size because of this I am thinking of the resotre.
If...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 26, 2010 at 4:08 am
Regarding the restore error, please run RESTORE HEADERONLY FROM DISK='YourFileName'. This would give you the database name to which the backup file belongs to.
But I feel it would be better...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 26, 2010 at 3:42 am
To reduce the number of VLFs the easy approach is to
1) Take the transaction log backup
2) Shrink the transaction log to the minimum size possible
3) Increase the transaction log file...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 26, 2010 at 2:15 am
Check if these scripts help
http://www.sqlservercentral.com/scripts/Miscellaneous/31859
http://www.mssqltips.com/tip.asp?tip=1555
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 25, 2010 at 1:02 pm
Here[/url] is a good one in SSC.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 25, 2010 at 12:58 pm
How are you starting the SQL Server Agent for this instance?
Do you see this error every time you try to start Agent?
If this is a recurring error please go through...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 25, 2010 at 7:08 am
@matthew.lau,
I am not aware of any such tools. You can try this method in sqlcmd or osql.
SET PARSEONLY ON
go
<YourQuery>
SET PARSEONLY OFF
go
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 25, 2010 at 3:21 am
Phil Parkin (11/25/2010)
Adiga (11/25/2010)
However it looks like the SQL Server Agent startup account does not have access to the path specified. Can you double check if the SQL Server Agent...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 25, 2010 at 3:00 am
yes, i am the owner of this. Its runs using my personal credential. Moreover, if i run this package using dtexec command its running fine here.
However it looks like the...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 25, 2010 at 2:50 am
AFAIK, sqlcmd and osql do not have the ability to do syntax check.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 25, 2010 at 2:40 am
Viewing 15 posts - 301 through 315 (of 1,157 total)