Viewing 15 posts - 106 through 120 (of 455 total)
Well go to IIS manager, go to the Report Manager/Report Server virtual directories and go to Directory Security Tab, Edit the Anonymous access and Authentication settings and enable Integrated Windows...
October 11, 2007 at 5:03 am
Are you talking about the Reporting Services Configuration Tool ? Please check if the executable file is available at :
"[DriveName]:\Program Files\Microsoft SQL Server\90\Tools\Binn\RSConfigTool.exe"
October 11, 2007 at 4:47 am
You should be really careful in structuring the insert queries as to which one needs to be executed first and what is next based on the dependencies (Relationships) defined on...
October 11, 2007 at 2:09 am
Hello John,
Thanks for pointing it out. It was my oversight to include CASE inbetween, sorry about that. I stand corrected.
October 11, 2007 at 2:03 am
Please let us know what do you mean by Merge. Are you looking at merging data? Since you specified that the structure is same. You may want to run a...
October 11, 2007 at 1:51 am
Yes exactly, your error messages states that the error is in line 3. Please select only this part of the script and try executing.
October 11, 2007 at 1:48 am
But it is not a bad idea to use CASE with a SELECT prefix as such you are not going to lose any thing.
SELECT CASE WHEN @value = 1 THEN...
October 11, 2007 at 1:16 am
If you furnish a bit of test data and the desired results that you are expecting by merging both stored procedures, it should be hard to combine your procedures into...
October 11, 2007 at 12:55 am
It is not wise to run the applications on SA password. It not only leads to problems as you mentioned but also would make the security vunerability more. If you...
October 10, 2007 at 11:32 am
Just try this.
select *
from MCommPLOrders as a
where convert(varchar, a.timeofcode, 112) = convert(varchar, getdate() -2, 112)
and (jobtypeid not like '%code%' and jobtypeid not like '%COIN%' and jobtypeid...
October 10, 2007 at 11:03 am
You can do it using sql query analyzer using the connection dialog option if you have credentials for the named instance database. You can also use New Query icon on...
October 10, 2007 at 10:45 am
Are you the output of the first sp anywhere else? If not you may just want to use this query
SELECT * FROM schedule_info WHERE _Date = @_Date and serverid IN...
October 10, 2007 at 10:38 am
After connecting to your SQL Server Named Instance run the following T-SQL
Please replace the drive and location with exact the location of your files.
RESTORE DATABASE DATA[DatabaseName] FROM DISK =...
October 10, 2007 at 10:23 am
No, the service hasn't started and it is a very weird problem I am trying to resolve. The server name is same. Any clues would be highly appreciated.
October 10, 2007 at 10:10 am
It really was as simple as that for me on one of the installations. However on a new server the installation goes fine till the last step where it says...
October 10, 2007 at 10:04 am
Viewing 15 posts - 106 through 120 (of 455 total)