Viewing 15 posts - 331 through 345 (of 1,222 total)
TheSQLGuru (7/22/2013)
July 24, 2013 at 12:00 am
Using your script, your backup went to folder E:\ and is in file "Report"
I think that what you want is something like:
use master
backup database bharti_test
to disk=N'E:\Reports\bharti_test.bak'
with copy_only;
July 23, 2013 at 11:51 pm
In a single instance of reporting services, there is one and only one ReportServer database and one ReportServerTempDB database.
The reports definitions are stored in the ReportServer database.
The data...
July 15, 2013 at 9:51 pm
Where did you install the Oracle client software ? For it to used as a linked server, it will need to be installed onto the Windows server that you...
July 14, 2013 at 9:52 pm
A single SQL Server instance can be used for multiple reporting services instances. The reporting services database (ReportServer, ReportServerTEMPDB) will include the reporting services instance name.
e.g. I have a reporting...
July 14, 2013 at 9:49 pm
1. Backing up files that are in use is not an option. SQL Server caches data and that may mean that, even though your queries are showing a record,...
July 7, 2013 at 10:14 pm
Instead of generating a snapshot, you could use a database backup. You can initialise a subscription using a backup instead of a snapshot.
If you need to have the replicas...
June 25, 2013 at 9:29 pm
Firstly, yes Express can be the witness (see http://msdn.microsoft.com/en-us/library/cc645993.aspx)
This may be a configuration issue with the Express instance. Not sure whether this is the correct suggestion, but -...
June 23, 2013 at 9:28 pm
Have you tried putting your code in a stored procedure and using the "EXECUTE AS" option in that stored procedure so that it executes as a user who is permitted...
June 17, 2013 at 9:35 pm
premkuttan (6/14/2013)
June 16, 2013 at 10:05 pm
I used http://underthefold.org/2011/06/13/exam-70-448-study-guide-part-1/ as my primary study reference. This (and the other 5 pages that are part of this study guide) have links to topics in various places...
June 10, 2013 at 9:59 pm
Let me start by saying that I have read up on this but haven't actually implemented SSIS on a cluster.
SSIS is not a cluster aware service and MS do not...
June 10, 2013 at 9:46 pm
I used the info etc from the website as the basis for my study. A lot of the links also have other related references and I also went to...
June 3, 2013 at 6:52 am
Viewing 15 posts - 331 through 345 (of 1,222 total)