Viewing 15 posts - 31 through 45 (of 454 total)
Check your web.config file in report server directory and see if you see anything like this
and change it to
Try this out if it helps!!!
April 25, 2008 at 10:58 am
The process should be straight forward, just you need to give a name to your SQL Server 2000 Instance if SQL Server 2005 is installed with a default instance setting.
April 25, 2008 at 10:43 am
SELECT '' as emp_id,emp_name,emp_dsg from table name if you want to manipulate only for retrieval. If you want to modify the values in the table use can just run a...
April 24, 2008 at 6:03 am
It will be prudent for you to refer to the help provided with SQL Server 2005 and post any specific questions if you have with respect to understanding the same.
The...
April 24, 2008 at 5:27 am
Please check To use multiple anonymous accounts for resource access in the following location
April 23, 2008 at 9:06 am
Sorry I understood that you do not have Allow IIS to Control Password on your server where you are facing problem.
Let me check.
April 23, 2008 at 8:49 am
You can use browse button against the user name and select a user with an administrator access rights and if you know the password for the corresponding user, uncheck the...
April 23, 2008 at 8:47 am
select datename(dw,getdate()) will give you the day of the week, you can script you logic based on this.
April 23, 2008 at 8:39 am
SQL King (4/23/2008)
1. There are 2 servers where the reports are being deployed. The reports are there for...
April 23, 2008 at 8:03 am
USE [master]
GO
CREATE DATABASE [test] ON
( FILENAME = N'c:\temp\test.mdf' ),
( FILENAME = N'c:\temp\test.ldf' )
FOR ATTACH ;
GO
Should work for Attaching a db.
April 8, 2008 at 9:48 am
I am sorry, but are you trying to retrieve the data or insert the data ? If you are trying to generate a report for Username realname by groupmembership you...
April 8, 2008 at 9:05 am
UPDATE [TABLENAME]
SET
FULLNAME = FIRSTNAME + ' ' + LASTNAME
April 8, 2008 at 8:59 am
Please post atleast the suedo code to mimic your procedure, the content that you have posted could not be used for replicating the error that you are getting.
sid_sarkar (4/8/2008)
April 8, 2008 at 8:56 am
Hello Rod,
Thank you for the comments, I see what you were doing! You tried to generate the stored procedure for a table that has no Identity defined and as you...
January 28, 2008 at 4:32 am
Try this
SELECT CAST(GETDATE() AS SMALLDATETIME)
December 27, 2007 at 7:41 am
Viewing 15 posts - 31 through 45 (of 454 total)