Viewing 15 posts - 1 through 15 (of 24 total)
Regardless, it looks as if you want to create a list of employees and their managers.
A simple direct way would be like this:
Select E.EmployeeName, (select EmployeeName from employee where employeeID...
May 18, 2011 at 8:40 am
Is this what you mean when you want to know how to execute the script?
create procedure test
as
begin
declare @script varchar(1000)
set @script = 'select getDate() as MyDate'
exec(@script)
end
May...
November 13, 2009 at 7:32 am
if the login that is running the script has rights to both db1 and db2, you could simply qualify the script fully like:
create table [db2].dbo.[<table name>] as .... select *...
November 12, 2009 at 9:37 am
The Authentication prompt you are getting is from Reporting Services. If you created a local user account or maybe you are using a domain user account, it really doesn't matter....
October 23, 2009 at 2:36 pm
Quick question about your configuration. You have a server running IIS, SSRS, and MSSQL. Is the SSRS Catalog running from the local MSSQL or from another Server? I have attached...
September 8, 2009 at 8:05 am
Have you run the SSRS Configuration Manager? What does it tell you?
August 21, 2009 at 3:28 pm
OK, If the example you showed was the report, abe the word "NULL" is visible on the report. In this case, you can use a change it based on a...
August 21, 2009 at 3:22 pm
Why don't you simply filter the NULL values from your dataset? I guess we need to know how your dataset is populated. SQL Query or a Stored Procedure?:cool:
August 21, 2009 at 3:15 pm
That is an interesting problem. From a basic level, you could validate the XML structure of the rdl or rdlc files. I am not aware of any APIs or emulators...
August 19, 2009 at 3:32 pm
Yes that is true, where a Tablespace is a collection of database objects. M Most Oracle Database DBAs will set up a default Tablespace "USERS" this tablespace is usually the...
August 11, 2009 at 12:22 pm
I agree with Paul. The Schema will act a a pseudo database, much like you experience in MSSQL. One thing that concerns me is your comment about the user adding...
August 11, 2009 at 10:53 am
To my knowledge you can not encrypt a password in the Web.config file. The question I have is why do you feel you need to? If the file is protected...
July 27, 2009 at 7:21 am
John's code is dead on, I was just pointing out that the substring of the first 10 characters would never provide the desired result or anything close to it.
😎
July 24, 2009 at 2:16 pm
We are starting to replace crystal with SSRS, at least for new products. SSRS is very powerful in that the reports are located on a central server and can be...
July 24, 2009 at 1:56 pm
declare @data_nv nvarchar(500)
declare @data_numeric DECIMAL(15,2)
SET @data_nv = '2.0018430861853059e-005'
select CONVERT(decimal(15,2) ,substring(@data_nv,1,10) )
You need to substring twice. First 10 like you have plus everything past the 'e', meaning the -005.
Then convert both...
July 24, 2009 at 1:25 pm
Viewing 15 posts - 1 through 15 (of 24 total)