Viewing 15 posts - 5,371 through 5,385 (of 6,395 total)
March 30, 2012 at 1:00 am
you will need trusts in place between the domains, kerberos authentication and SPN's setting up to allow the pass through of windows authentication accounts to cross domains
March 29, 2012 at 3:10 am
all forum topics stay active, they cant be closed
glad you got it working
for the benefit of others could you detail the problem and resolution incase someone else has the same...
March 29, 2012 at 12:54 am
you will need to add in the image of the person and the image of the uni logo as images to the report
create a rectangle which has a background image...
March 28, 2012 at 7:57 am
1 - image is a depreciated data type, use nvarchar(max), varchar(max), varbinary(max) instead
2 - filestream might be a better option and saves on the DB as it send the file...
March 28, 2012 at 7:43 am
sorry that is unclear to me I do appologise
do you have the images you want to use? can you attach them and I can put them in a report...
March 28, 2012 at 7:40 am
what is your expression with the change to ytd2011 and what value fro ytd2012 is being used 0 still?
March 28, 2012 at 7:33 am
Lowell (3/28/2012)
the typical chars you are looking for are highascii between 160 and 255;
here i'm just using a row_number() function generate a table of numbers...
March 28, 2012 at 7:21 am
firstly that query looks incorrect as your only ever going to be looking at the last character in the string being a special character not the whole string
SELECT Description, FROM...
March 28, 2012 at 7:19 am
do you want the background image to be completly in the background which covers the whole of the report page? and I take it the corner image is the company...
March 28, 2012 at 6:37 am
as your dividing by ytd2011 thats the one you need to check is 0, not ytd2012, missed that at first look
March 28, 2012 at 4:44 am
=IIF((Fields!TG___2012_YTD.Value) = 0,0,
((Fields!TG___2012_YTD.Value) - (Fields!TG___2011_YTD.Value)/Fields!TG___2011_YTD.Value) *100)
the problem on the above is the second 0 as your still passing in 0 to divide by, change it to 1 so that...
March 28, 2012 at 4:24 am
you can go into the login at the server level in the security/logins folder to see what server level securables the login has, then at the DB level in security/users...
March 28, 2012 at 3:56 am
another way to do it
CREATE TABLE [dbo].[tab1](
[NUM] [int] NULL,
[bdDQLinkID] [nvarchar](255) NULL,
[bdDQID] [nvarchar](255) NULL,
[bdID] [int] NOT NULL,
[bdSalutation] [nvarchar](255) NULL,
[bdFirstName] [nvarchar](255) NULL,
[bdMiddleName] [nvarchar](255) NULL,
[bdSurname] [nvarchar](255) NULL,
[bdFullName] [nvarchar](255) NULL,
[bdTitle] [nvarchar](255) NULL,
[bdPhoneNumber] [nvarchar](255) NULL,
[bdEmail]...
March 28, 2012 at 3:43 am
Viewing 15 posts - 5,371 through 5,385 (of 6,395 total)