Viewing 15 posts - 4,261 through 4,275 (of 6,397 total)
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
Please follow the second link in my signature on posting code & data, but we will need DDL, sample data, logic and expected outcome.
With that information we will be able...
July 18, 2012 at 6:43 am
% outside of a like clause is the MODULO operator and returns the remainder of the division of the calculation
July 18, 2012 at 6:42 am
Viewing 15 posts - 4,261 through 4,275 (of 6,397 total)