Viewing 15 posts - 1,636 through 1,650 (of 4,820 total)
March 28, 2018 at 9:29 am
March 28, 2018 at 9:24 am
It depends on who server principal "DOMAIN\user" is. Is this failure for the service account...
March 28, 2018 at 9:22 am
Try this on for size:CREATE TABLE #TestHldgs (
HoldingID float NULL,
ClientURN float NULL,
IndicatorID float NULL,
IndicatorTypeId float NULL,
IndicatorStatusID float NULL,
DateApplied datetime NULL
);
INSERT #TestHldgs (HoldingID,...
March 28, 2018 at 9:19 am
Take a look at this and let me know what you think:CREATE TABLE #Source (
ID varchar(50) NOT NULL PRIMARY KEY CLUSTERED,
nameFull varchar(50),
salutation varchar(50),
nameFirst varchar(50),
nameLast varchar(50),
March 28, 2018 at 8:55 am
Gail is correct. The problem here is that there's nothing else in the table on which you can base any form of sort on, other than the column that is...
March 28, 2018 at 7:41 am
March 28, 2018 at 7:35 am
The security context that SSRS runs under will usually (if not always) be the SSRS Service Account, so that account will need at least read access to that other database.
March 28, 2018 at 7:31 am
That's one of the difficulties of having multiple columns for the same kind of data in a given row. If I had this I'd look to re-design it to have...
March 27, 2018 at 2:00 pm
March 27, 2018 at 11:51 am
March 27, 2018 at 10:38 am
March 27, 2018 at 10:33 am
March 27, 2018 at 10:20 am
Viewing 15 posts - 1,636 through 1,650 (of 4,820 total)