Viewing 15 posts - 31 through 45 (of 186 total)
I either use the local Windows scheduler and batch files to call maintenance and backup scripts or schedule SSIS packages on another server with the scripts in SQL Tasks.
June 10, 2011 at 3:37 am
Here's a link to the scripts, with instructions, that MS provide for moving logins with their SIDs and passwords: http://support.microsoft.com/kb/918992
June 10, 2011 at 2:46 am
sqlfriends,
I don't think there is a 'typical' size for a Sharepoint database, that would depend on the amount of data being stored in it.
You don't say if your database in...
June 6, 2011 at 4:44 am
Ninad, Shiv,
Search for sp_spaceused in BOL. You will see:
There are some situations, for example, after an index is dropped, when the space information for the table may not...
June 3, 2011 at 2:38 am
crazy4sql, I don't want to appear rude, but you're wrong. My experience of renaming local instances using those procs is the same as Michael's. To quote the BOL entry...
February 3, 2011 at 8:19 am
crazy4sql, if you look in BOL at the topic How to: Rename a Stand-Alone Instance of SQL Server 2005, you'll see that
sp_dropserver <old_name>
GO
sp_addserver <new_name>, local
GO
is exactly how to do it....
February 3, 2011 at 3:21 am
December 22, 2010 at 4:12 am
To answer your question of why the instance is there, during BackupExec installation, unless it's pointed at an existing SQL Server instance to create the BEDB database it will install...
December 21, 2010 at 4:27 am
On the Advanced tab in the job step properties check that the On Success action is not set to 'Quit the job reporting failure'.
November 26, 2010 at 7:50 am
Possibly a case of parameter sniffing? http://sqlinthewild.co.za/index.php/2007/11/27/parameter-sniffing
October 13, 2010 at 1:28 am
Hi Balaji.
Did you try registering dtspkg.dll and dtspump.dll on your client machine too? Also, this is the 2008 forum - are these packages migrated from 2000? There...
October 12, 2010 at 2:42 am
Have you tried registering the Activex Script Host?
Instructions here: http://www.sqldts.com/224.aspx
October 11, 2010 at 4:50 am
GO is a batch separator, so your SP is only executing up to the end of the first INSERT. Remove all but the final GO and you'll be sorted.
Check...
October 1, 2010 at 1:51 am
And thank you for the link - very informative. From reading that it looks like the OP could be in luck. Will be interesting to see what their...
September 21, 2010 at 5:41 am
SQL Server 32 bit can't use more than 4GB of memory.
Here's someone who's proved SQL Standard 32bit can use more than 4GB on a 32bit OS:...
September 21, 2010 at 3:21 am
Viewing 15 posts - 31 through 45 (of 186 total)