ARIS 7.1 with MSSQL 2008 Databse ??

Hello Experts,
Is it possible to install ARIS 7.1 with MSSQL 2008 Database?
In the standard installation guide they have mentioned only about 2005 server. If I see some online communities of Aris (
http://www.ariscommunity.com/users/rahulrajvanshi31/2010-01-28-does-aris-support-windows-server-2008 ) they mention it is possible.
Are there anyone here who have tried ARIS 7.1 with MSSQL 2008 Database?
Regards
Vivek

Hi Vivek,
As stated in Solution Manager thread....
ARIS 7.1, MS SQL 2008 is supported but only up to version R2 Enterprise Edition. MS SQL 2008 R3 is currently not supported.
I hope this helps.
Roland

Similar Messages

  • ARIS 7.1 with MSSQL 2008 Database?

    Hello Experts,
    Is it possible to install ARIS 7.1 with MSSQL 2008 Database?
    In the standard installation guide they have mentioned only about 2005 server. If I see some online communities of Aris (
    http://www.ariscommunity.com/users/rahulrajvanshi31/2010-01-28-does-aris-support-windows-server-2008 ) they mention it is possible. But no details are provided in these posts.
    Are there anyone here who have tried ARIS 7.1 with MSSQL 2008 Database?
    Regards
    Vivek

    Hi Vivek,
    As far as I know for ARIS 7.1, MS SQL 2008 is supported but only up to version R2 Enterprise Edition. MS SQL 2008 R3 is currently not supported.
    I hope this helps.
    Roland

  • MSSQL 2008 R2 - 32bit, TSQL backup with compression, error: There is insufficient system memory in resource pool 'internal' to run this query

    Hello,
    I would like to ask you about advice.
    We have MSSQL 2008 R2, 32 bit. Memory is 4GB, split into 2GB for Windows and 2GB for applications. Database has recovery model simple because we have replicated data into other servers ( 2 ). Contemporary we work with 2 servers. Max memory for MSSQL is 2048
    MB.
    We set the backup as follows:
    USE MSDB
    GO
    DECLARE @JMENO_ZALOHY VARCHAR(120)
    SELECT  @JMENO_ZALOHY = 'E:\backup\BackupSQL\1 Pondeli\DAVOSAM_'+ convert( varchar(2), datepart( hh, getdate() ) ) + '00_DEN_DIFF.bak'
    SELECT  @JMENO_ZALOHY
    BACKUP DATABASE [DAVOSAM]
    TO DISK = @JMENO_ZALOHY
    WITH INIT, DIFFERENTIAL, CHECKSUM, COMPRESSION
    GO
    Every second or third day in log there is error message: 'There is insufficient system memory in resource pool 'internal' to run this query' Accurate in time of backup. The error is still repeat, majority in working hours.
    Today I have found out, that problem is probably in compression of backup. Because if I removed word: compression, a backup normally runs without error.
    Question: Is my hypothesis correct that problem is in backup with compression?
    Thank you David

    Hello, today evening I have ran backup command bellow. All is OK. Probably MSSQL has cleaned memory. Next attempt I will try in peak next week.
    Since time I have removed word compression, in error log is not any error.
    I have checked memory as soon as memory gets on top, it is about 1.707 GB the MSSQL writes into log this messgages:
    2014-03-14 15:00:04.63 spid89      Memory constraints resulted reduced backup/restore buffer sizes. Proceding with 7 buffers of size 64KB.
    2014-03-14 15:00:08.74 Backup      Database differential changes were backed up. Database: DAVOSAM, creation date(time): 2014/01/12(22:03:10), pages dumped: 16142, first LSN: 1894063:1673:284,
    last LSN: 1894063:1792:1, full backup LSN: 1894053:15340:145, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\backup\BackupSQL\5 Patek\DAVOSAM_1500_DEN_DIFF.bak'}). This is an informational message. No user action is required.
    2014-03-14 15:00:12.79 spid72      Memory constraints resulted reduced backup/restore buffer sizes. Proceding with 7 buffers of size 64KB.
    2014-03-14 15:00:12.88 Backup      Database differential changes were backed up. Database: WEBFORM, creation date(time): 2014/02/01(05:22:47), pages dumped: 209, first LSN: 125436:653:48, last
    LSN: 125436:674:1, full backup LSN: 125435:689:36, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\backup\BackupSQL\5 Patek\WEBFORM_1500_DEN_DIFF.bak'}). This is an informational message. No user action is required.
    After that the MSSQL reduced memory on 1.692.
    USE MSDB
    GO
    DECLARE @JMENO_ZALOHY VARCHAR(120)
    SELECT  @JMENO_ZALOHY = 'E:\backup\BackupSQL\6 Sobota\DAVOSAM_'+ convert( varchar(2), datepart( hh, getdate() ) ) + '00_DEN_FULL.bak'
    SELECT  @JMENO_ZALOHY
    BACKUP DATABASE [DAVOSAM]
    TO DISK = @JMENO_ZALOHY
    WITH INIT, CHECKSUM, COMPRESSION, MAXTRANSFERSIZE=65536
    GO
    E:\backup\BackupSQL\6 Sobota\DAVOSAM_2100_DEN_FULL.bak
    (1 row(s) affected)
    Processed 467240 pages for database 'DAVOSAM', file 'DavosAM_Data' on file 1.
    Processed 2 pages for database 'DAVOSAM', file 'DavosAM_Log' on file 1.
    BACKUP DATABASE successfully processed 467242 pages in 24.596 seconds (148.411 MB/sec).
    select * from sys.dm_exec_connections
    where net_packet_size > 8192
    session_id  most_recent_session_id connect_time            net_transport                            protocol_type            
                   protocol_version endpoint_id encrypt_option                           auth_scheme                
                 node_affinity num_reads   num_writes  last_read               last_write              net_packet_size client_net_address  
                                client_tcp_port local_net_address                                local_tcp_port
    connection_id                        parent_connection_id                 most_recent_sql_handle
    (0 row(s) affected)
    SELECT SUM (pages_allocated_count * page_size_in_bytes)/1024 as 'KB Used', mo.type, mc.type
    FROM sys.dm_os_memory_objects mo
    join sys.dm_os_memory_clerks mc on mo.page_allocator_address=mc.page_allocator_address
    GROUP BY mo.type, mc.type, mc.type
    ORDER BY 1 DESC;
    KB Used     type                                                         type
    29392       MEMOBJ_SORTTABLE                                             MEMORYCLERK_SQLSTORENG
    9392        MEMOBJ_SOSNODE                                               MEMORYCLERK_SOSNODE
    8472        MEMOBJ_SQLTRACE                                              MEMORYCLERK_SQLGENERAL
    5480        MEMOBJ_SECOLMETACACHE                                        USERSTORE_SCHEMAMGR
    5280        MEMOBJ_RESOURCE                                              MEMORYCLERK_SQLGENERAL
    5008        MEMOBJ_CACHEOBJPERM                                          USERSTORE_OBJPERM
    4320        MEMOBJ_SOSSCHEDULER                                          MEMORYCLERK_SOSNODE
    2864        MEMOBJ_PERDATABASE                                           MEMORYCLERK_SQLSTORENG
    2328        MEMOBJ_SQLCLR_CLR_EE                                         MEMORYCLERK_SQLCLR
    2288        MEMOBJ_SESCHEMAMGR                                           USERSTORE_SCHEMAMGR
    2080        MEMOBJ_SOSDEADLOCKMONITORRINGBUFFER                          MEMORYCLERK_SQLSTORENG
    2008        MEMOBJ_LOCKBLOCKS                                            OBJECTSTORE_LOCK_MANAGER
    1584        MEMOBJ_CACHESTORETOKENPERM                                   USERSTORE_TOKENPERM
    1184        MEMOBJ_LOCKOWNERS                                            OBJECTSTORE_LOCK_MANAGER
    840         MEMOBJ_SNIPACKETOBJECTSTORE                                  OBJECTSTORE_SNI_PACKET
    760         MEMOBJ_SOSDEADLOCKMONITOR                                    MEMORYCLERK_SQLSTORENG
    752         MEMOBJ_SESCHEMAMGR_PARTITIONED                               USERSTORE_SCHEMAMGR
    688         MEMOBJ_RESOURCEXACT                                          MEMORYCLERK_SQLSTORENG
    616         MEMOBJ_SOSWORKER                                             MEMORYCLERK_SOSNODE
    552         MEMOBJ_METADATADB                                            MEMORYCLERK_SQLGENERAL
    480         MEMOBJ_SRVPROC                                               MEMORYCLERK_SQLCONNECTIONPOOL
    424         MEMOBJ_SQLMGR                                                CACHESTORE_SQLCP
    400         MEMOBJ_SBOBJECTPOOLS                                         OBJECTSTORE_SERVICE_BROKER
    384         MEMOBJ_SUPERLATCH_BLOCK                                      MEMORYCLERK_SQLSTORENG
    384         MEMOBJ_RESOURCEDATASESSION                                   MEMORYCLERK_SQLGENERAL
    352         MEMOBJ_SOSSCHEDULERMEMOBJPROXY                               MEMORYCLERK_SOSNODE
    328         MEMOBJ_SBMESSAGEDISPATCHER                                   MEMORYCLERK_SQLSERVICEBROKER
    320         MEMOBJ_METADATADB                                            USERSTORE_DBMETADATA
    296         MEMOBJ_INDEXSTATSMGR                                         MEMORYCLERK_SQLOPTIMIZER
    264         MEMOBJ_LBSSCACHE                                             OBJECTSTORE_LBSS
    224         MEMOBJ_XE_ENGINE                                             MEMORYCLERK_XE
    216         MEMOBJ_GLOBALPMO                                             MEMORYCLERK_SQLGENERAL
    208         MEMOBJ_PROCESSRPC                                            USERSTORE_SXC
    200         MEMOBJ_SYSTASKSESSION                                        MEMORYCLERK_SQLCONNECTIONPOOL
    200         MEMOBJ_REPLICATION                                           MEMORYCLERK_SQLGENERAL
    192         MEMOBJ_SOSSCHEDULERTASK                                      MEMORYCLERK_SOSNODE
    176         MEMOBJ_SQLCLRHOSTING                                         MEMORYCLERK_SQLCLR
    168         MEMOBJ_SYSTEMROWSET                                          CACHESTORE_SYSTEMROWSET
    128         MEMOBJ_RESOURCESUBPROCESSDESCRIPTOR                          MEMORYCLERK_SQLGENERAL
    128         MEMOBJ_CACHESTORESQLCP                                       CACHESTORE_SQLCP
    128         MEMOBJ_RESOURCESEINTERNALTLS                                 MEMORYCLERK_SQLSTORENG
    120         MEMOBJ_BLOBHANDLEFACTORYMAIN                                 MEMORYCLERK_BHF
    120         MEMOBJ_SNI                                                   MEMORYCLERK_SNI
    88          MEMOBJ_QUERYNOTIFICATON                                      MEMORYCLERK_SQLOPTIMIZER
    72          MEMOBJ_HOST                                                  MEMORYCLERK_HOST
    72          MEMOBJ_INDEXRECMGR                                           MEMORYCLERK_SQLOPTIMIZER
    64          MEMOBJ_RULETABLEGLOBAL                                       MEMORYCLERK_SQLGENERAL
    56          MEMOBJ_SERVICEBROKER                                         MEMORYCLERK_SQLSERVICEBROKER
    56          MEMOBJ_REMOTESESSIONCACHE                                    MEMORYCLERK_SQLGENERAL
    56          MEMOBJ_PARSE                                                 CACHESTORE_PHDR
    48          MEMOBJ_CACHESTOREBROKERTBLACS                                CACHESTORE_BROKERTBLACS
    48          MEMOBJ_APPENDONLYSTORAGEUNITMGR                              MEMORYCLERK_SQLSTORENG
    40          MEMOBJ_SBASBMANAGER                                          MEMORYCLERK_SQLSERVICEBROKER
    32          MEMOBJ_OPTINFOMGR                                            MEMORYCLERK_SQLOPTIMIZER
    32          MEMOBJ_SBTRANSPORT                                           MEMORYCLERK_SQLSERVICEBROKERTRANSPORT
    32          MEMOBJ_CACHESTOREBROKERREADONLY                              CACHESTORE_BROKERREADONLY
    32          MEMOBJ_DIAGNOSTIC                                            MEMORYCLERK_SQLGENERAL
    32          MEMOBJ_UCS                                                   MEMORYCLERK_SQLSERVICEBROKER
    24          MEMOBJ_STACKSTORE                                            CACHESTORE_STACKFRAMES
    24          MEMOBJ_CACHESTORESXC                                         USERSTORE_SXC
    24          MEMOBJ_FULLTEXTGLOBAL                                        MEMORYCLERK_FULLTEXT
    24          MEMOBJ_APPLOCKLVB                                            OBJECTSTORE_LOCK_MANAGER
    24          MEMOBJ_FULLTEXTSTOPLIST                                      CACHESTORE_FULLTEXTSTOPLIST
    24          MEMOBJ_CONVPRI                                               CACHESTORE_CONVPRI
    16          MEMOBJ_SQLCLR_VMSPY                                          MEMORYCLERK_SQLCLR
    16          MEMOBJ_VIEWDEFINITIONS                                       MEMORYCLERK_SQLOPTIMIZER
    16          MEMOBJ_SBACTIVATIONMANAGER                                   MEMORYCLERK_SQLSERVICEBROKER
    16          MEMOBJ_AUDIT_EVENT_BUFFER                                    OBJECTSTORE_SECAUDIT_EVENT_BUFFER
    16          MEMOBJ_HASHGENERAL                                           MEMORYCLERK_SQLQUERYEXEC
    16          MEMOBJ_SBTIMEREVENTCACHE                                     MEMORYCLERK_SQLSERVICEBROKER
    16          MEMOBJ_ASYNCHSTATS                                           MEMORYCLERK_SQLGENERAL
    16          MEMOBJ_BADPAGELIST                                           MEMORYCLERK_SQLUTILITIES
    16          MEMOBJ_QSCANSORTNEW                                          MEMORYCLERK_SQLQUERYEXEC
    16          MEMOBJ_SCTCLEANUP                                            MEMORYCLERK_SQLGENERAL
    16          MEMOBJ_XP                                                    MEMORYCLERK_SQLXP
    8           MEMOBJ_SECURITY                                              MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_CACHESTOREBROKERRSB                                   CACHESTORE_BROKERRSB
    8           MEMOBJ_EXCHANGEXID                                           MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_CACHESTOREVENT                                        CACHESTORE_EVENTS
    8           MEMOBJ_CACHESTOREXPROC                                       CACHESTORE_XPROC
    8           MEMOBJ_DBMIRRORING                                           MEMORYCLERK_SQLUTILITIES
    8           MEMOBJ_SERVICEBROKERTRANSOBJ                                 CACHESTORE_BROKERTO
    8           MEMOBJ_CACHESTOREOBJCP                                       CACHESTORE_OBJCP
    8           MEMOBJ_CACHESTOREXMLDBELEMENT                                CACHESTORE_XMLDBELEMENT
    8           MEMOBJ_ENTITYVERSIONINFO                                     MEMORYCLERK_SQLSTORENG
    8           MEMOBJ_AUDIT_MGR                                             MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_EXCHANGEPORTS                                         MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_DEADLOCKXML                                           MEMORYCLERK_SQLSTORENG
    8           MEMOBJ_CACHESTORETEMPTABLE                                   CACHESTORE_TEMPTABLES
    8           MEMOBJ_HTTPSNICONTROLLER                                     MEMORYCLERK_SQLHTTP
    8           MEMOBJ_CACHESTOREVIEWDEFINITIONS                             CACHESTORE_VIEWDEFINITIONS
    8           MEMOBJ_CACHESTOREPHDR                                        CACHESTORE_PHDR
    8           MEMOBJ_CACHESTOREXMLDBTYPE                                   CACHESTORE_XMLDBTYPE
    8           MEMOBJ_CACHESTORE_BROKERUSERCERTLOOKUP                       CACHESTORE_BROKERUSERCERTLOOKUP
    8           MEMOBJ_EVENTSUBSYSTEM                                        MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_CACHESTOREBROKERDSH                                   CACHESTORE_BROKERDSH
    8           MEMOBJ_SOSDEADLOCKMONITORXMLREPORT                           MEMORYCLERK_SQLSTORENG
    8           MEMOBJ_CACHESTOREXMLDBATTRIBUTE                              CACHESTORE_XMLDBATTRIBUTE
    8           MEMOBJ_CACHESTOREBROKERKEK                                   CACHESTORE_BROKERKEK
    8           MEMOBJ_QPMEMGRANTINFO                                        MEMORYCLERK_SQLQUERYEXEC
    8           MEMOBJ_CACHESTOREQNOTIFMGR                                   CACHESTORE_NOTIF
    (101 row(s) affected)
    David

  • Migration SAP SolMan 7 MSSQL 2008 R2 Enterprise Edition to MSSQL Standard Edition

    Hello,
    I try to migrate a databse on Windows MSSQL 2008 R2 ENTERPRISE EDITION to
    MSSQL 2008 R2 STANDARD EDITION.
    In the source system (MSSQL 2008 R2 ENTERPRISE EDITION) there is "table compression" and
    "partitioning" active.
    Unfortunately the MSSQL STANDARD EDITION doesn`t support these two features.
    So a normal DB backup on the source system and restore in the destination system is not possible.
    But the tables compression I can deactivte by the SQL script
    SELECT DISTINCT ‘ALTER TABLE [' + SCHEMA_NAME(schema_id) + '].[' + NAME + '] REBUILD PARTITION = ALL WITH (DATA_COMPRESSION = NONE);’
    FROM sys.partitions p
    join sys.objects o
    on p.object_id = o.object_id
    WHERE o.TYPE = ‘u’
    and data_compression_desc != ‘NONE’
    UNION
    SELECT ‘ALTER INDEX ALL ON [' + SCHEMA_NAME(schema_id) + '].[' + NAME + '] REBUILD PARTITION = ALL WITH (DATA_COMPRESSION = NONE);’
    FROM sys.partitions p
    join sys.objects o
    on p.object_id = o.object_id
    WHERE o.TYPE = ‘u’
    and data_compression_desc != ‘NONE’
    is there a way to undo or deactivate the the SQL table partitioning without data lost ?
    Best regards
    B.-D.

    Hello Lydia Zhang,
    thanks for your help.
    For a few tables this will work.
    Unfortunately I have an SAP system with thousands of tables and index`s .
    With the SQL script:
    SELECT
     SCHEMA_NAME(t.schema_id) AS SchemaName
    ,OBJECT_NAME(i.object_id) AS ObjectName
    ,p.partition_number AS PartitionNumber
    ,fg.name AS Filegroup_Name
    ,rows AS 'Rows'
    ,au.total_pages AS 'TotalDataPages'
    ,CASE boundary_value_on_right
        WHEN 1 THEN 'less than'
        ELSE 'less than or equal to'
     END AS 'Comparison'
    ,value AS 'ComparisonValue'
    ,p.data_compression_desc AS 'DataCompression'
    ,p.partition_id
    FROM sys.partitions p
    JOIN sys.indexes i ON p.object_id = i.object_id AND p.index_id = i.index_id
    JOIN sys.partition_schemes ps ON ps.data_space_id = i.data_space_id
    JOIN sys.partition_functions f ON f.function_id = ps.function_id
    LEFT JOIN sys.partition_range_values rv ON f.function_id = rv.function_id AND p.partition_number = rv.boundary_id
    JOIN sys.destination_data_spaces dds ON dds.partition_scheme_id = ps.data_space_id AND dds.destination_id = p.partition_number
    JOIN sys.filegroups fg ON dds.data_space_id = fg.data_space_id
    JOIN (SELECT container_id, sum(total_pages) as total_pages
            FROM sys.allocation_units
            GROUP BY container_id) AS au ON au.container_id = p.partition_id
    JOIN sys.tables t ON p.object_id = t.object_id
    WHERE i.index_id < 2
    ORDER BY ObjectName,p.partition_number;
    GO
    Output:
    SchemaName    ObjectName    PartitionNumber    Filegroup_Name    Rows    TotalDataPages    Comparison    ComparisonValue    DataCompression  
     partition_id
    swp    /BI0/F0CCMARSH    1    PRIMARY    0    0    less than    NULL    NONE    72057613126729728
    swp    /BI0/F0CCMAWDD1    1    PRIMARY    0    0    less than    NULL    NONE    72057613127516160
    swp    /BI0/F0CCMAWDD2    1    PRIMARY    0    0    less than    NULL    NONE    72057613128237056
    swp    /BI0/F0CCMAWDH1    1    PRIMARY    0    0    less than    NULL    NONE    72057613128957952
    and so on
    I got about 5000 tables .
    Is there a way to delete all index on the partioned table an create a new with one script ?
    Best regards
    B.-D.

  • [solved] Build of php package with mssql support - checking my process

    Since the straight 'php' package doesn't support mssql, I'm in the process of trying to build and install an updated copy that has that switch turned on. The information I've seen out there seems pretty straight forward, but my results are odd, so I'm checking my work here...
    I did an abs to pull down the tree (had to use abs -t), created an abs directory under my root home dir, then copied the extra/php branch to /root/abs/php
    Edit the PKGBUILD adding the line
        --with-mssql \
    to the end (line 130) of the list of  phpextensions= that is later used in the ./configure line of PKGBUILD. Then from the same directory, run makepkg --asroot -f
    then remove the old php with pacman -Rd php
    then install the new php with pacman -U ./php-5.3.2-6-i686.pkg.tar.xz
    Then modify my php.ini for mssql support
    and then get the wierd results:
    - php reports it does not have mssql support. phpinfo() shows the ./configure command line and the --with-mssql piece is not there.
    - a php -m reports "PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/mssql.so' - /usr/lib/php/modules/mssql.so: cannot open shared object file: No such file or directory in Unknown on line 0
    A search for mssql.so comes up empty on the system. I am not sure why it isn't there, but I wanted to make sure I was doing the above steps first before running down the php code specific rabbit hole trying to find mssql.so in case it is under a different name in the source and then compiled out to be mssql.so in the end result.
    (note - I have freetds on the system along with it's source files from the package, and no mssql.so in there either)
    Thanks,
    -Jeff
    Last edited by jethro (2010-09-22 19:33:55)

    Did all that, no real errors, only a few warnings, but did figure out what was going on and will put it here in case anyone searches on this and is in the same boat. In search of mssql.so I found this web page http://howtogetitworking.com/2008/02/26 … p-on-unix/ which talks about needing to build the mssql.so file yourself. Specifically, going into src//ext/mssql/ then
    # cd /uploaded_path/mssql/
    # phpize
    # ./configure
    # make
    # make install
    and suddenly I have mssql.so, restart apache and I have mssql support. I wasn't expecting to have to compile a subsection of php after doing a package build with the switches I wanted, but I guess that's what I had to do.
    Thanks,
    -Jeff

  • Problem with MSSQL 2005 maintenence plan

    Hi,
    I am facing a problem with MSSQL 2005 maintenance plan. I created a plan which takes full backup of all the db’s and in the same plan I added a clean up task which is suppose to clean all the files older that 1 day.
    To gain compression I converted this plan to lite speed. Now the problem is Backups are running fine but the clean task is not cleaning old files. The job runs fine without fail.
    Any body who has faced similar problem please let me know if have the solution ?
    Thanks in advance.
    Kishan

    Hi in this case  my date format used in backup file getutcdate() format but
    to delete files i am using this script
    Declare @sql varchar(250),@retention tinyint
    set @retention=0
    set @sql='Exec master.dbo.xp_cmdshell ''Del E:\SQL2005\Backup\*' + convert(varchar(15),getdate()-@retention,120) + '*.bak'''
    Exec (@sql)
    i also tried with getutcdate()
    but it gives the following error.
    Could Not Find \\E:\SQL2005\Backup\*2008-04-03*.bak
    why i donot understand.
    can any one give heads up.

  • MSSQL 2008 - Database size getting smaller after EHP upgrade??

    Hi All,
    Did anyone observe the DB size of MSSQL 2008 after EHP upgrade?
    In my two system, after upgraded to EHP5 and EHP2 respectively, the database is getting smaller compare to before upgrade, estimated 5-10gb.
    EHP upgrade is unlike DBEXPORT, it shouldn't have any reorganization features and so do MSSQL.
    Any idea?
    Cheers,
    Nicholas Chang

    > Right after upgrade is smaller and after sgen, db size is bigger than source.
    So it's ok.
    > As system was upgrade from ECC6 to EHP5 with Central Application, HCM and Finance .... the after upgrade size should bigger than the source even before SGEN. Your kind input is mostly welcome.
    If the source system was compiled completely (using SGEN) then you need to compare the sizes of the target system also, otherwise you compare apple with pies.
    Another reason may be that index compression was activated:
    Note 1459005 - Enabling index compression for SQL Server
    You could now upgrade to SQL Server 2008 R2 and apply
    Note 1488135 - Database compression for SQL Server
    this will save additional space (30 - 50 %).
    Markus

  • Confirm no support for MSSQL 2008 before reverting to older EM version

    Before I resort to installing EM Grid Control (11.1.0.1), I want to confirm that I have correctly read that EM12C does NOT support monitoring of MSSQL 2008. I understand that MSSQL 2008 R2 is certified with EM12C but, it appears that monitoring the original MSSQL 2008 is not.
    Also, I'm a bit nervous about using EM Grid Control since it appears to have been a one-and-only version. Would I be smarter to go back to one of the EM10 versions?
    This will be a new install, not an upgrade, so I hate to start out with an outdated EM tool but, I have to be able to monitor MSSQL 2008.
    TIA,
    Jeri

    I have received a response from MOS to my original SR which confirms that EM12C is not certified for monitoring MSSQL 2008. For those who may possibly be interested in clarification of other OS and/or MSSQL versions with various flavors of EM, I've included below the full SR response details:
    "The 12cR1 and 12cR2 Cloud Control are only certified to monitor two versions of Microsoft SQL Server : 2005 and 2008 R2
    The 12cR2 is certified with these 3 Windows OS versions : 7,2008 R2,2003 on 64-bit platform where as the 12cR2 is certified with 4 versions of Windows OS version: 7,2008 R2,2008,2003
    The 11g Grid Control is certified to monitor 7 versions of Microsoft SQL Server (including 2008) : 2008 R2 Cluster,2008 R2,2008 Cluster,2008,2005 Cluster,2005,2000
    Also 11g Grid Control certified with 4 versions of Windows platform : 7,2008,2003 R2,2003"
    The analyst who provided this information was also kind enough to open another SR on my behalf which will hopefully yield the answer to my other question- whether deploying 11g Grid Control is the best option for my environment or whether one of the EM10 versions might be a better choice. Unless someone else here is interested in that answer too, I won't update this post further with that information.
    Thanks, Jeri

  • Migration SAP SolMan 7.1 MSSQL 2008 R2 Enterprise Edition to MSSQL Standard Edition

    Hello,
    I try to migrate a SAP SolMan 7.1 on Windows MSSQL 2008 R2 ENTERPRISE EDITION to
    MSSQL 2008 R2 STANDARD EDITION.
    In the source system (MSSQL 2008 R2 ENTERPRISE EDITION) there is "table compression" and
    "partitioning" active.
    the MSSQL STANDARD EDITION doesn`t support these two features.
    So a normal DB backup on the source system and restore in the destination system is not possible.
    But the tables compression I can deactivte by the SQL script
    SELECT DISTINCT ‘ALTER TABLE [' + SCHEMA_NAME(schema_id) + '].[' + NAME + '] REBUILD PARTITION = ALL WITH (DATA_COMPRESSION = NONE);’
    FROM sys.partitions p
    join sys.objects o
    on p.object_id = o.object_id
    WHERE o.TYPE = ‘u’
    and data_compression_desc != ‘NONE’
    UNION
    SELECT ‘ALTER INDEX ALL ON [' + SCHEMA_NAME(schema_id) + '].[' + NAME + '] REBUILD PARTITION = ALL WITH (DATA_COMPRESSION = NONE);’
    FROM sys.partitions p
    join sys.objects o
    on p.object_id = o.object_id
    WHERE o.TYPE = ‘u’
    and data_compression_desc != ‘NONE’
    is there a way to undo or deactivate the the SQL table partitioning without any data lost ?
    Or is there a other way to migrate a SAP SolMan 7.1 form MSSQL 2008 R2 ENTERPRISE EDITION to MSSQL 2008 R2 STANDARD EDITION ?
    Best regards
    A. Moore

    Hi Moore
    Could you refer the SAP Note for MS Sql Version supports
    1076022 - Release planning for Microsoft SQL Server 2008 (R2)
    and MS SQL table compression & decompression SAP Note
    1488135 - Database compression for SQL Server
    BR
    SS

  • Create Master Repository With MSSQL 2005

    Hi,
    I try to create a new Master repository with MSSQL 2005 but the connection to the database doesn't work.
    I create a database named db_snpm for the master database and a database named db_snpw for the work db as oracledi_setup.pdf said.
    I create a user/password snpm/password for db_snpm and snpw/password for db_snpw.
    There are db_owner.
    My driver connection : com.microsoft.sqlserver.jdbc.SQLServerDriver
    My Url : jdbc:sqlserver://localhost:1433;selectMethod=cursor;databaseName=db_snpm;integratedSecurity=false
    User : snpm
    Password : password
    When I try the connection, I've got the following error "com.sunopsis.sql.c: com/microsoft/sqlserver/jdbc/SQLServerDriver "
    I had created a SQL SERVER DataServer in the topology Manager with the same driver and url and the connection work fine. I used it in some interface.
    Any help would be great.
    Thanks
    Jerome
    Edited by: user12010673 on 14 oct. 2009 02:00

    Creation of ODI master repository is limited to few relational databases only. Check certification matrix for ODI 11g
    Oracle 10.2.0.4+
    Oracle 11.1.0.7+
    Oracle 11.2.0.1+
    Microsoft SQL Server 2005
    Microsoft SQL Server 2008
    IBM DB2/UDB 9.7 and later FixPaks
    IBM DB2/400 (V5R4+)
    Hypersonic SQL 1.7.3+
    Sybase AS Enterprise 15.0.x
    thanks

  • App coded in Crystal XI need to be compatiable with Crystal 2008. Options?

    Dear All,
    The product I am working on, works fine with Crystal XI. But now task is to make it work for clients that have just Crystal 2008 (not Crystal XI). (Even assuming there is no new feature that Crystal 2008 offer is planned in this existing application.)
    I was wondering what would be the best bet to make that application compatiable? Certainly we do not want to have two seperate application coded separatly for Crystal XI and Crystal 2008.
    I will appreciate any information, feedback, guidance that you can provide on this.
    Thanks

    am actually using Visual Studio .NET 2008 only with Crystal Reports XI R2. I was not aware of the fact that Crystal Reports XI R2 does not work with Visual Studio 2008. It could be that since I have both Visual Studio 2005 and 2008 in my machine, and this could be referring to old one.
    I believe Visual Studio 2008 came with .NET framework 3.5 and in theory 3.5 does all that 2.0 used to do. So I am not sure what would be the reason of .NET 2008 not supporting it. May be I am missing something, please help me clarify?
    - See the supported platforms doc here:
    https://websmp106.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000712240&_SCENARIO=01100035870000000202
    (choose Business Objects XI release2 / crystal reports -> crystal reports -> crystal reports XI r2 -sp2 - supported platforms.
    .NET 2008 is not listed. That is as far as this discussion should need to go. E.g.; do not use CR XI r2 with .NET 2008, or .NET 2010 when it comes out - if you do, you're on your own.
    Option-1) Now my worry is can same application; when installed on a client who has just crystal report 2008 (not upgrade from XI-R2) run-time installed, will work OK?
    As long as you run CR XI r2 with the supported version of .NET (e.g.; in your case .NET 2005) there will be no issues after installing CR 2008 as CR 2008 and CR XI r2 are side by side compatible. One thing I would highly discourage is running reports created in CR 2008 with CR XI r2.
    Option-2) Is there any change in existing code, I need to do so that irrespective of what run-time environment client has (XI R2 or, Crystal 2008), my application runs fine without any issue?
    If you install CR 2008 SP0 after installing .NET 2008, you should not need any code modification to an already working app. All that will happen is that the CR assemblies will get upgraded to version 12.x. Of course, you then need to distribute the CR 2008 runtime to your client / server computers.
    Any other option...
    Not sure where the confusion is, but I am not sure why we'd want to look for other options(?).
    Ludek

  • How do I add "--with-mssql" to my php in 10.5 Server

    Hi,
    I am afraid of messing something up and would like to know what is the safest way to go about this.
    I have installed FreeTDS successfully on the mac, so nothing should be standing in my way of getting mssql functions to work in php.
    Is there some guide for reconfiguring php for 10.5 in general that I could apply to my --with-mssql need, I found one reconfiguring guide for 10.4 on topicdesk.com but it didn't cut it.

    Unfortunately, this is very problematic. Your best bet is to spend some time reading here:
    http://www.entropy.ch/phpbb2/viewforum.php?f=2
    Good luck.
    Jeff

  • I want to upgrade to Lightroom 5, but I'm concerned about compatibility with my 2008 intel Core 2 Duo iMac with only 4G of Ram.  Will I be able to run Lighroom 5 if I upgrade from Snow Leopard to Lion?

    I want to upgrade to Lightroom 5, but I'm concerned about compatibility with my 2008 intel Core 2 Duo iMac with only 4G of Ram.  Will I be able to run Lightroom 5 okay if I upgrade from Snow Leopard to Lion?  What will happen to the applications that aren't 64-bit compatible?  Also the Eye-one Display 2 colorimeter to calibrate the monitor will not run on Lion, so that will be an expensive upgrade to an i1DisplayPro. Is the upgrade important enough to offset the expense?  I have an Epson R2000 printer.  Will there be problems with the drivers if I upgrade to Lion?  It would be great to hear from other mac users who are also photographers and who print their own photos.    

    Before upgrading to Lion be sure to read this link:
    https://discussions.apple.com/docs/DOC-6271
    Adobe lists these requirements:
    http://www.adobe.com/products/photoshop-lightroom/tech-specs.html
    Looking at http://www.everymac.com/ even the earliest 2008 iMac was fully 64 bit, even though Boot Camp doesn't support 64 bit Windows on that machine.

  • Upgrading R / 3 4.7 system to ECC6.0 with EHP4 along with windows 2008

    Hi All,
    I am looking for your feedback about the plan for upgrading our Landscape to ECC 6. with EHP4 from R/34.7E.
    Current Environment: R/3 4.7X110 with SQL 2000 in 32 bit windows 2003
    Planning to upgrade to the level of : ECC6.0 with EHP4 64 bit windows 2008, SQL 2005 Database
    Based on the previous experience in upgrade I have planned in the following ways.
    Since my basis component is in the level of 63, its possible for me to restore the SQL 2000 database in SQL 2005 (Using System copy tool )
    Step 1: Migration of OS / DB using system copy tool (R/3 4.7 with SQL 2005 in 64 bit Windows 2003 ), Then will leave the system for testing for some period and after the confirmation, planned to start the upgrade
    Step 2: By meeting all the prerequisites, Planned to upgrade to ECC6.0 with EHP4 on the OS / DB upgraded system.
    Step 3: Once the upgrade completed / With the confirmation from the functional and technical consultants, I planned to upgrade the windows 2003 to windows 2008 using system copy tool.
    Note: I am not using SQL 2008 - Project decision.
    The above mentioned plan is the only way(proper way) for doing such activities or is there any other way to shorten the project.
    I should not ask the below question (Even after reading PAM and SAP note 1054740), But kindly regret me for asking this one, out of own curiosity, i am asking the below one.
    1. Is there any possible to install SAP R / 3 4.7 in windows 2008 with 2005 (This will help me to shorten the project). I am completely aware that SAP wont support R/3 4.7 with windows 2008, if its not at all possible is there any other work around for me to shorten? Let me know your suggestions and thoughts
    Your valuable inputs will help me to proceed further with the plans (I surfed the SDN and read master guides already) . I really want to make sure , the way which i am going is the right one.
    Thanks and Regards
    Vijay Kumar

    Hi Jitendra,
    Hope you should check the PAM again , Its supported for sure and also for upgrading to EHP4 - SQL 2005 is the Prerequiste.
    Hi Abhi and Others,
    Thanks for all your support.
    I have successfully completed the project for my landscape and it was a great success too.
    As you all said, since I had the hardware availability and time frame as well. Hence, I have tried both the possibilities.
    Note :I would prefer and stick with the SAP proposed and supported way and even for my project I have followed the same. So I would recommend to stick with SAP supported one.
    But for the own technical interest I have tried the other option as well which is not supported by SAP and also faced some typical issues as well / but solved on my own with some tricks and other activities. So, this option is also possible but highly risked one and of course(more importantly) which is not supported by SAP. So, i would recommend to go with the SAP recommended way.
    Thanks for everyone and I am closing the thread
    Regards
    Vijay

  • Will Nvidia GT 120 work with Early 2008 MacPro 2.8 3,1 with 30 inch ACD

    Will Apple's Nvidia GT 120 work with Early 2008 MacPro 2.8 3,1 with 30 inch ACD and MacOS 10.6.2:
    http://store.apple.com/us/product/MC002ZM/A?mco=MTQ2MjQ0NTQ
    Leon McKee

    Malcolm, thanks for taking the time to respond. I'll purchase the card this week and bring her back to life. Thanks!
    Leon McKee

Maybe you are looking for

  • What Happens If I Click Restore In iTunes?

    Hi, I just ran the 2.0 update on my iPod Touch. A few things are messed up, so I'd like to wipe my iPod Touch and re-sync everything again from scratch. What I don't want to do is restore it from a backup. What I'd like to know is, what exactly does

  • Help! isight doesn't work in the morning, but work in the afternoon...

    Hi everyone, I am almost mad with my isight.....I found when I start the laptop in the morning, it doesn't work, it shows"there is no connected camera". But I keep using the laptop for several hours until the afternoon, then I open the isight, it tur

  • Wrong warning? to open with Reader (9.3.x or higher) "This PDF form requires a newer version of ..."

    Hello I have a problem with my form, when opened with Adobe Reader Version 9.3.0.148 (included) or higher Reader systematically shows the annoying message "This PDF form requires a newer version of Adobe Reader ...". I work with 3 versions of each fo

  • WiFi icon in status bar disappeared

    Hi, two days ago the wifi icon in the status bar just disappeared. I can connect to wifi networks as usual, but no wifi icon is visible anymore. Could this be due to having installed the Accuweather app? This app has a temperature notification in the

  • Epson cx5400 won't work

    I've an Epson CX 5400 AIO and my new MacBook Pro won't recognize any of the Epson printer drivers in the Printer setup utility. I tried reinstalling them from a Tiger DVD but they still aren't popping up under the USB printers. I know the printer is