Viewing 15 posts - 1 through 15 (of 17 total)
As @Indianrock does, I turn it on only when needed. I recall having to write a custom database archival script. Within the script a database was...
September 16, 2016 at 7:06 am
@victor: C level = company executives - those with the three letter acronyms beginning with "C" (CEO, CIO, CFO, etc.)
August 12, 2016 at 7:11 am
There are many options for obtaining the file name for an automated restore routine. You could connect to the source SQL Server directly to obtain backup metadata from msdb....
January 30, 2015 at 2:46 pm
When using the Invoke-Sqlcmd, include the -Verbose option. That will output the "messages" tab from SSMS.
PS U:\> Add-PSSnapin sqlservercmdletsnapin100
PS U:\> Invoke-Sqlcmd -Query "select 'test'; PRINT N'123';" -Verbose
Column1
-------
test
VERBOSE: 123
PS U:\>
June 25, 2014 at 12:48 pm
Abu Dina (3/6/2014)
Gary Gwyn (3/6/2014)
March 6, 2014 at 9:22 am
Have you tried backing up to another attached disk on the server, then copying to USB? Or, attach the USB to your local machine or another server. Backup...
March 6, 2014 at 8:54 am
Boy, do I feel stupid. I stand corrected. I just tested this via the GUI and a script and the change is effective immediately.
I'm not sure where I...
February 21, 2014 at 7:33 am
If no maximum is set, then SQL uses as much RAM as it needs. You can set a maximum, say 44,032 MB -- allows 4GB for OS operations. ...
February 19, 2014 at 3:47 pm
Wow!!! 50,000! I script jobs frequently, but my quantity is usually much, much less. I suggest that you check to make sure the database mail profiles and...
February 14, 2014 at 7:04 am
The script will be tricky then if permissions and uncommon file paths are an issue.
If you have a linked server set up between OldServer and NewServer, then you could create...
February 13, 2014 at 3:55 pm
Tom Van Harpen (6/25/2013)
Basically right now we have a user that sets up jobs as themselves and once...
February 13, 2014 at 3:37 pm
You can use UNC paths in the BACKUP DATABASE command. Just backup directly to the destination server, then have a script on the other end to do a restore...
February 13, 2014 at 2:50 pm
Use the GUI to alter the endpoint address, or use the ALTER ENDPOINT command.
February 13, 2014 at 2:45 pm
If you ever have the need to transfer the report files in bulk, then there is a great tool available that will do the work for you. I found...
January 31, 2014 at 2:45 pm
Viewing 15 posts - 1 through 15 (of 17 total)