Viewing 15 posts - 4,261 through 4,275 (of 6,401 total)
As with anything licensing, it is best to speak to MS directly or contact your MS reseller.
General rule of thumb is anyone who accesses a development SQL server must have...
July 19, 2012 at 2:06 am
This is data collector and the management data warehouse.
I would first start by checking the configuration, under management - data collection - (right click) management data warehouse.
July 19, 2012 at 2:03 am
EXEC sp_srvrolepermission 'dbcreator';
EXEC sp_dbfixedrolepermission 'db_backupoperator';
DBCreator can only restore while db_backupoperator can backup.
Easiest thing to do is add the user to the model database with db_backupoperator and then when a new...
July 19, 2012 at 1:58 am
That is a totally different schema and set of data to what you have provided all ready.
Please post the correct DDL and the correct data along with your expected outcomes...
July 19, 2012 at 1:50 am
There is no BIN folder in SSRS as your not creating an application.
All you need to do once you have configured the target server URL and developed the report is...
July 19, 2012 at 1:48 am
You should see records like this
Recovery of database 'DBName' (DBID) is 0% complete (approximately 124308 seconds remain). Phase 1 of 3. This is an informational
message only. No user action...
July 18, 2012 at 8:55 am
;WITH CTE AS
(
SELECT DISTINCT branch, groupid FROM companies where groupid <> 0
)
SELECT
branch,
sum(num)
FROM
(
SELECT branch, count(groupid) as num FROM companies where groupid = 0 group by branch
union all
SELECT branch, count(groupid) as...
July 18, 2012 at 8:38 am
Thats right, you have two records for branch 2 in the sample data
But checking your expected results you only want 1, what is the logic to only get 1 and...
July 18, 2012 at 8:25 am
SELECT branch, count(groupid) as num from companies group by branch
July 18, 2012 at 8:16 am
I have attached the quick reference guides to licensing for 2008R2 and 2012, you might still be able to purchase 2k8 licenses but if not you will need to follow...
July 18, 2012 at 8:11 am
Keep your eye on the SQL error log, it should post the current step and estimated time left on the recovery process.
July 18, 2012 at 7:43 am
If you could read the second link in my signature on posting code it will help us out in future as we will have readily consumable data to which anyone...
July 18, 2012 at 7:19 am
Sample data in consumable format
DECLARE @Table1 TABLE (RPTTypeCode CHAR(2), Firstname VARCHAR(50), LastName VARCHAR(50), BarrowerID INT, LoanTransID INT)
INSERT INTO @Table1 VALUES ('B1','Anu','k',1,1),('C1','Swetha','SS',2,1)
DECLARE @Table2 TABLE (LoanAppID INT, LoanTransID INT, LoanNumber VARCHAR(10))
INSERT INTO...
July 18, 2012 at 7:08 am
Technically no, but as its Visual Studio, it might need a reboot to register some components in the GAC.
July 18, 2012 at 7:00 am
Viewing 15 posts - 4,261 through 4,275 (of 6,401 total)