Viewing 15 posts - 76 through 90 (of 140 total)
You would need to build the email message using HTML tags.
We use a few where the messages are built in an ActiveX script then sent. We also have a table set up...
April 12, 2007 at 2:28 am
You would need to send it as an attachment.
April 2, 2007 at 2:47 am
The ReferencedDatabase is any other database to which the stored procedure used to view the report needs access.
The access given to the global group(s) only them to access the...
March 26, 2007 at 6:45 am
This is the setup I've used
Create global group gg_SQL_xxxx in Active Directory Users and Groups
On the Reporting Services database
Create login gg_SQL_xxxx Default...
March 26, 2007 at 5:24 am
The fixed width for a TEXT field is 2GB.
A quick test with only 14 records and c. 20 characters in each TEXT field produces a download of 44Mb. Not quite...
March 23, 2007 at 4:26 am
It's the Double-Hop problem.
If the Reports server and SQL server are on different machines then the authentication is not passed from the Report server to the SQL server. If you check the...
March 23, 2007 at 4:08 am
It appears that your server has "lost" its server name. Using sp_addlinkedserver or addserver is just going to replace it in the sysservers table
March 23, 2007 at 3:37 am
You could try sp_addlinkedserver to restore the entry but I've no idea how it came to be deleted in the first case.
March 23, 2007 at 3:14 am
The one on the right. Most definitely. All I need to do now is find somewhere in the backyard to put it
March 23, 2007 at 2:57 am
TRUNCATE TABLE permissions default to the table owner, members of the sysadmin fixed server role, and the db_owner and db_ddladmin fixed database roles, and are not transferable.(BOL)
February 20, 2007 at 2:42 am
I'd have to say yes, as long as my "better" half could do the same. Just being able to do and go where ever and when ever.... bliss.
January 5, 2007 at 2:11 am
You would need to alter
SET @dataSource = 'SomeDB'
to
SET @datasource = (SELECT ColumnContainingDatabaseName
FROM TableContainingDatabaseName
WHERE CriteriaForDatabaseName
)
January 3, 2007 at 5:51 am
When you right click and Modify SQL does a sequence of sql commands upon saving the changes (table name and columns removed) :
/* To prevent any potential data loss issues, you...
January 3, 2007 at 4:49 am
Just run a quick test and the Conditional Split does not like AND but is ok with && (Logical AND)
December 28, 2006 at 4:05 am
Viewing 15 posts - 76 through 90 (of 140 total)