Forum Replies Created

Viewing 15 posts - 2,461 through 2,475 (of 3,366 total)

  • RE: SQL 2005 Reporting services

    It means IIS 6 is either not configured correctly during installation or Asp.net is not registered with IIS. So you need to remove IIS 6 in add remove Windows...

  • RE: updatable view

    Your tables are not UNION compatible because you have 10 and 20 columns which means both tables are not equal. I don't think you can create partitioned views and...

  • RE: SQL functions in SRS

    You can make it stored procedure then SSRS must execute it because control is passed to the relational engine. But SSRS still rejects stored procedures with many local temp...

  • RE: updatable view

    You cannot have any JOIN because that will prevent the update to the base tables. Look in the link I posted there are sample codes showing all tables are...

  • RE: What does N'??????' mean?

    N' means Nchar or Nvarchar meaning it is Unicode text data.

  • RE: updatable view

    You are saying the same thing I am saying because you can create a view to reference many tables but to be updatable it must reference only one table. ...

  • RE: updatable view

    An updatable view must reference only one base table however you can create Partitioned views which can update more than one table but all tables must be UNION ALL compatible....

  • RE: sql server 2005 sp2

    In SQL Server 2005 and 2008 Integration Services and the SQL Server Agent are disabled by default so go to configuration manager and right click and enable the services both...

  • RE: SQL Server 2008 Report Server Issue

    Vista is IIS 7 not IIS 6 but you need to configure IIS 7 in IIS 6 mode and enable all the features needed to run Asp.net. Check the...

  • RE: Slack SQL Server

    In most cases Triggers are obsolete but most important Triggers were created by the RDBMS vendors to enforce business rules before added to ANSI SQL so like most things in...

  • RE: SSRS 2005 on Windows XP Home

    The short answer is no because SQL Server 2005 SSRS is IIS dependent but I found a work around using SQL Server 2008 SSRS with SQL Server 2005 relational engine....

  • RE: Slack SQL Server

    Update using the FROM clause violates JOINs are idempotent rule in relational algebra.

    Microsoft needs to provide Proclarity as MDX query builder in Kilimanjaro because as Ralph Kimball says...

  • RE: Problem in installing SQL server reporting services

    You need to make sure IIS is installed because if you are not getting reporting services in 2005 it is related to IIS because it is IIS dependent.

    Microsoft...

  • RE: Problem in installing SQL server reporting services

    You don't have IIS6 because IIS6 only comes with Windows 2003 so you are running IIS5 but that is not the issue. You need to remove existing SQL Server...

  • RE: DB2 to MSSQL 2005

    It is not complicated to move data from DB2 to SQL Server you can use DTS/SSIS to move the data and automate the process. The first link shows you...

Viewing 15 posts - 2,461 through 2,475 (of 3,366 total)