SQL Server 2005 + SP3 is supported on a Windows 2008 + Server SP2. Is there a link that specififcally States this?

Hello

Is there a link that indicates that the SQL 2005 SP3 is supported on Windows 2008 SP2?

I can find a link that indicates that SQL 2005 SP2 is supported on Windows 2008 SP1 (http://www.microsoft.com/Sqlserver/2005/en/us/system-requirements.aspx). But I want to make sure that you document somewhere that Windows 2008 SP2 is also supported.

See you soon
Tim

http://www.Microsoft.com/windowsserver2008/en/us/forums-blogs.aspx

Try the repost in the above Forums Windows Server 2008.

See you soon.

Mick Murphy - Microsoft partner

Tags: Windows

Similar Questions

  • connect ms sql server to oracle using db link


    Hello

    Source: Oracle 11g on linux

    destination: ms sql server 2005

    I need to create the link oracle to ms sql server db to display tables, it is posibble without having to configure gateways (as it looks like it is produced under license)

    Please let me know any alternative to achieve this

    Thank you

    PMP

    There are 2 bridge - commercial database gateway for Ms SQl Server, which requires a license and database for ODBC gateway which is free. The license for DG4ODBC is included in your license data. You just need to install an ODBC driver on your Linux machine (for example, to use the MS SQl Server for Linux ODBC driver - details can be found here: http://www.microsoft.com/en-gb/download/details.aspx?id=36437 ). and then configure the gateway using the My Oracle Support Note:

    How to set up DG4ODBC on 64-bit Unix OS (Linux, Solaris, AIX, HP - UX Itanium) to connect to Oracle databases Post Install [Article ID 561033.1]

    -Klaus

  • the variable name of database query to SQL Server using the Oracle database link

    Hi all

    I have an ApEx 4.1 application running on x 64 (11.2.0.1) 11g on Windows Server 2008 x 64, and I have a few points of data integration with SQL (2005 and 2008) server that I need to create. I have configured the database with dg4odbc link and it works perfectly... I can run queries on the SQL Server database without any problem using the database link.

    However, there is a scenario where the SQL Server database name is dynamic, and I need to generate on the fly in a PL/SQL block and then use it in a query dynamic SQL (all this in the ApEx). It of wherever I meet problems... when I asked the default database that is based on the ODBC connection and I don't have to specify the name of the database, no problem. But when I need access to one of the several other databases by default, I received the error "invalid table.

    It works well:* (note that 'fv' is the name of my database link)

    v_query1: = "select 'Release Date' from dbo." Schedules@FV where dbo. Annexes. "" SchedID "=: calendar";
    EXECUTE IMMEDIATE v_query1 in rel_date using the grid.




    I then take this rel_date variable, convert a varchar2 (rel_date_char), then use it as the name of the database in the following query...


    _ It returns an error(error ORA-00903: invalid table name)

    v_query2: = "select"PARTNO": rel_date_char.dbo.ProdDetails@fv where 'SchedID' =: calendar and"UnitID"=: unit"
    and 'MasterKey' =: master and "ParentKey" =: parent';

    EXECUTE IMMEDIATE v_query2 in part_number using planning, master, parent unit;



    I also tried using all of the following conditions without result:

    "select"PARTNO"of" | : rel_date_char | '.dbo. ProdDetails@fv where 'SchedID '...
    "select"PARTNO"of" | rel_date_char | '.dbo. ProdDetails@fv where 'SchedID '...
    "select"PARTNO"of" | @rel_date_char | '.dbo. ProdDetails@fv where 'SchedID '...
    "select"PARTNO"in @rel_date_char.dbo.ProdDetails @fv where 'SchedID'..."


    Is it possible to do it in PL/SQL?

    Thanks for any help!
    -Ian C.

    Published by: 946532 on July 15, 2012 19:45

    Just did a test using passthrough:

    SQL > set serveroutput on
    SQL > declare
    2 val varchar2 (100);
    3 c whole;
    4 whole nr;
    5. start
    c: 6 = dbms_hs_passthrough.open_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3;
    7 dbms_hs_passthrough.parse@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, "select count (*) from EMP");
    8 LOOP
    9 nr: = DBMS_Hs_Passthrough.fetch_row@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    10 output when nr = 0;
    11 dbms_hs_passthrough.get_value@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, 1, val);
    12 dbms_output.put_line (val);
    13 end of loop;
    14 dbms_hs_passthrough.close_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    15 end;
    16.
    24576

    PL/SQL procedure successfully completed.

    SQL > declare
    2 val varchar2 (100);
    3 c whole;
    4 whole nr;
    5. start
    c: 6 = dbms_hs_passthrough.open_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3;
    7 dbms_hs_passthrough.parse@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, ' select count (*) from dbo.) EMP');
    8 LOOP
    9 nr: = DBMS_Hs_Passthrough.fetch_row@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    10 output when nr = 0;
    11 dbms_hs_passthrough.get_value@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, 1, val);
    12 dbms_output.put_line (val);
    13 end of loop;
    14 dbms_hs_passthrough.close_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    15 end;
    16.
    24576

    PL/SQL procedure successfully completed.

    So all 3 ways work for me.

    Published by: kgronau on July 23, 2012 10:08

    Now, using the variables to make the selection:

    SQL > declare
    2 val varchar2 (100);
    3 c whole;
    4 whole nr;
    5 tabname varchar2 (20): = 'EMP ';
    6 ownr varchar2 (20): = "dbo."
    7 dbname varchar2 (20): = "door";
    Start 8
    c: 9 = dbms_hs_passthrough.open_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3;
    10 dbms_hs_passthrough.parse@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, ' SELECT count (*) FROM ': dbname: '.) ' || ownr | '.'|| tabname | ") ;
    11 LOOP
    12 nr: = DBMS_Hs_Passthrough.fetch_row@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    13 when the exit nr = 0;
    14 dbms_hs_passthrough.get_value@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, 1, val);
    15 dbms_output.put_line (val);
    16 end loop;
    17 dbms_hs_passthrough.close_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    18 end;
    19.
    24576

    PL/SQL procedure successfully completed.

    => instead of executing the statement using the "execute Immediate" we use the PASTHROUGH package to pass the statement to SQL Server.

    Published by: kgronau on July 23, 2012 10:10

  • Using Microsoft SQL Server SP2 2012 and update KB2793634

    I'm in control of several servers that are running Microsoft SQL Server SP1 2012. One of these servers is broken to cause the same symptoms as KB2793634 ( http://www.microsoft.com/en-us/download/details.aspx?id=36215 ) fixes. This error is due to the installation of SP1 (which has been done on all servers) and will come into action later. I'm afraid that the other servers will be in shortly.

    Prior to this fix, I applied 2012 SP2 of Microsoft SQL Server on the server with the issue in the hope of resolving this. KB2793634 is now unable to run on this server because it is compatible with the SQL SP1. So my question is:

    SP2 includes KB2793634? I want this problem to be addressed before the other servers are affected as this first, then should I install SP2 or just install KB2793634 on other servers?

    Thank you very much, I hope that all the senses. If it's in the wrong place, can you please direct me to where I can ask SQL related questions?

    Ask the question in the SQL Server forums:
    http://social.msdn.Microsoft.com/forums/SQLServer/en-us/home?category=SQLServer

  • Update of security for sql server sp3 KB94981 fails with error 2B 33

    Each update for SQL Server 2005 on my computer Vista Home Premuim fails. The most recent example is:

    Update of security for sql server sp3 KB94981 fails with error 2B 33

    for SP2, it was

    Security for sql server sp2 KB960089 update fails with error 6AA

    Other updates have been ad are successful, although I found out recently that it is the recovery disc option to create under maintenance contract. I fdound the recdisk.exe file, but running it does nothing.

    Mike

    Maybe check this forum:

    SQL Installation of Server & upgrade
    http://social.msdn.Microsoft.com/forums/en-us/sqlsetupandupgrade/threads/

    TaurArian [MVP] 2005-2010 - Update Services

  • Installation of the Microsoft SQL Server 2005 Express Edition (KB955706) code error 0x2B2F

    I am trying to install an update on a desktop HP for Microsoft SQL Server 2005 Express Edition (KB955706).  It has downloaded everything and still not settle.  It gives the error code is 0x2B2F.  I searched this error on the microsoft website and nothing came.  Any help would be appreciated.

    Hello nesbitzero,

    Thank you for using Microsoft Windows forum.

    You receive the 0x2b2f error code when you use the web sites, Windows Update or Microsoft Update to install SQL Server 2005 Service Pack 3 on a computer with MSXML6 Service Pack 2 is already installed.
     
    Follow this link for the reasons: http://support.microsoft.com/kb/970674

    You must first try and reset Windows Update components to eliminate the
    KB955706 update for SQL server.

    Follow the link for what has a fixit: http://support.microsoft.com/kb/971058

    After reset, try to install it once more to check if the problem persists.

    If this is the case, install the update mode safe

    Follow the steps below to start in safe mode with networking:

    1. reboot your computer and start pressing F8 on your keyboard. On a computer that is configured to start to multiple operating systems, you can press the F8 key when the Boot Menu appears.
    2. Select networking in Mode safe mode when the Windows Advanced Options menu is displayed and press ENTER

    In Safe Mode, download and install the stand-alone package for the Microsoft SQL Server 2005 Service Pack 3 on the site: https://www.microsoft.com/downloads/details.aspx?FamilyID=ae7387c3-348c-4faa-8ae5-949fdfbe59c4&displaylang=e

    Note: It is recommended that you temporarily disable the antivirus before installing the update.
     
    Follow the steps in the link below for "SQL Server 2005 Setup fails when MSXML Core Services 6.0 Service Pack 2 has been installed"
    http://support.Microsoft.com/kb/968749

    See: http://social.answers.microsoft.com/Forums/en-US/vistawu/thread/e78198b7-324f-4775-85bd-83ce5af4affc for the exact number.

    For more information, see: http://social.msdn.microsoft.com/Forums/en-US/category/sqlserver/

    Kind regards
    Aziz Nadeem - Microsoft Support

  • get an error c 0000064 for microsoft sql server 2005 express edition service pack 3 kb955706

    Vista Home Basic are trying to agree once again butdid not accepting help

    Hi deere,.

    Try to go to the following link for assistance. He referred to SP2, but the problem (and the fix) should be the same

    http://support.Microsoft.com/kb/957008/

    Also, if you are using Visual Studio 2005,.
    Service Pack 3 for SQL Server provided with the files that have experienced problems of compatibility on Vista and Windows 2008. To resolve, it is suggested that you apply to Visual Studio 2005 Service Pack 1, see http://support.microsoft.com/?kbid=960320 for more information.
    Dave D
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Data type of text is not displayed using SQL Server and ASP/VBScript

    Maybe someone help me with this because I used to use PHP/MySQL, but I use for this a Classic ASP/VBScript and MS SQL Server instance and I don't know that much. The scenario is I have an old site that was designed using html tables and I do a CSS/XHTML update on Visual design. As long as we are here, there are some pages that are dynamic and use a MS Access database and we thought it's a good time to upgrade from MS SQL Server (2005, to be exact). No time/money for bringing classic ASP VBScript in ASP .NET.

    Overall, the upgrade went fairly well, especially just to create a new connection to the DB in SQL Server in Dreamweaver after all the tables and data were migrated to SQL Server. Almost everything works as it should. A problem though.

    For some reason, the data of the data type 'text' in SQL Server is not appear (or sometimes appear). I even tried to recreate the recordsets and binds fresh data and the code is more or less identical to what we had before. Anyone know what's happening, or how I can get this data to show?

    I think that there is perhaps some simple and double quotes in the text data and which could be screwing things up. I was hoping there is only a simple function that I could apply the code, but as I said, I don't know.

    Thanks in advance for any help you can provide.

    -Bill

    captcashew wrote:
    > Maybe someone help me with this because I used to use PHP/MySQL, but for this one
    > instance I use Classic ASP/VBScript and MS SQL Server and I do not know
    > that much. The scenario is that I have an old site that was designed using html
    > tables and I do a CSS/XHTML update on Visual design. As long as we
    > are there, there are some pages that are dynamic and that use a MS Access
    > database and we thought it's a good time to upgrade from MS SQL Server
    > (2005, to be exact). No time/money to classic ASP VBScript in ASP.
    > .NET so.
    >
    > Overall, the upgrade went quite well, especially just needed a new
    > connecting to the DB in SQL Server in Dreamweaver after all tables and data
    > have been migrated to SQL Server. Almost everything works as it should. One of the problems
    > If.
    >
    > For some reason, the data of the data type 'text' in SQL Server is not
    > appear (or sometimes appear). I even tried to recreate the recordsets and
    > binds fresh data and the code is more or less identical to what we had
    > front. Anyone know what's happening, or how I can get this data to show?
    >
    > I think that maybe there are single and double quotes in the text
    > data and which could be screwing things up. I was hoping that there is only a simple
    > function I could apply the code, but as I said, I don't know.
    >
    > Thanks in advance for any help you can provide.

    Your text field should be the last of your select statement, as
    its not stored in the table with the other data, its stored elsewhere,
    as a binary object, should be treated differently. Its common
    the migration of the access problem.

    If you need more of 8000 characters stick with him, otherwise use
    varchar (8000) or nvarchar (4000) If you need (limited unicode characters
    4,000 cos of the double byte characters)

    Dooza
    --
    Display guidelines
    http://www.Adobe.com/support/forums/guidelines.html
    How to ask Smart Questions
    http://www.CatB.org/ESR/FAQs/smart-questions.html

  • This program has known compatibility issues when I try to install sql server 2008 in windows 7 X 64

    I use windows 7 (X 64), and when I try to install sql server 2008 I have this message & can not install it:

    ""

    This program has known compatibility issues:

    Check online to see if solutions available on the microsoft website ara, if we find solutions, windows will automatically display a Web site that lists the steps, you can take.

    Program: Microsoft sql server 2008

    Publisher: Microsoft

    When the sql server Setup program is finished, you must apply the service pack of sql server 2008 1 (SP1) or a later service pack before you run sql server 2008 on this version of windows

    Looking for online solutions run program cancel

    ""

    And I check online for solutions & recommended program installation, but also the same message appear, so please help me, how can I fix

    Hi DoudyEwais,

    1. How do you try to install SQL server 2008 on the computer?

    2. did you of recent changes on the computer?

    I suggest that you try to install the program using compatibility mode by running the program compatibility issues

    Make older programs in this version of Windows

    http://Windows.Microsoft.com/en-us/Windows7/make-older-programs-run-in-this-version-of-Windows

    List of known issues when you install SQL Server on Windows 7 or Windows Server 2008 R2

    http://support.Microsoft.com/kb/955725

    If the previous step fails, then after your query in the SQL server forums by using the link below.

    SQL Server forums

    http://social.msdn.Microsoft.com/forums/en/category/SQLServer/

  • Replica groups of ' Always on ' SQL Server 2012 - limited to 2 knots on VMWare?

    VMWare KB1037959 provides instructions for Microsoft clustering on VMWare, but does not have SQL Server replica groups cover 2012 "Always on."

    This KB article sets a limit of 2-node MSCS clusters, but also indicates that "the SQL mirror effect is not by VMware to be a clustering solution. VMware supports fully mirroring SQL on vSphere with no specific restrictions. »

    In SQL, 2012 replica groups are a combination of failover Microsoft Cluster Service (MSCS) monitor and SQL database mirroring.  Yo I have to install the 'Fail on Microsoft Cluster' role to implement the SQL replica groups, master didn't have any shared disks.

    I was not able to find guidance on the use of groups of replica SQL 2012 on VMWare.  I hope that it is supported without restriction (as long as you do not use a shared quorum disk), but a strict interpretation of the KB1037959 leads to a limitation of two nodes.

    Can anyone shed more light on this?

    Now the last row of the first table lists:

    Availability of AlwaysOn SQL group Yes Yes1 Yes Yes Even OS/app Yes Yes Yes Yes N/A N/A

    Perhaps this was added recently.

    That answer your question?

  • Interlink with Sql server and Oracle

    Hello

    We have some data in SQL Server.
    We need to link SQL Server and Oracle Database. To make reports in Oracle Apex.

    Please someone guide me to interconnect with Oracle database

    Kind regards
    Thérèse

    Therese,
    You can find more information on gateways in this available in My Oracle Support note-

    Note to master for the Oracle Gateway (Doc ID 1083703.1) products

    Kind regards
    Mike

  • Data migration from Oracle to SQL Server

    Hello

    I have the Oracle database in one or several table, I also blob data, i.e. images are stored, now I want to move that data to the sql server database, which is the best way to do this?

    I would like to test for a migration of the table that contains the image data in the Oracle database and invade the SQL Server table.

    How to test for an Oracle table data to SQL Server migration?

    But the first thing I want to confirm is that if the Image from Oracle DB to SQL Server DB data are possible? is there something must be supported during the migration?

    Thanks in advance.

    Kind regards

    Vishal

    Published by: 968331 on October 31, 2012 02:31

    I think that it is supported. The equivalent data type in sql server is IMAGE/varbinary (max)

    See the bottom of the article for the mapping of data types:

    http://weblogs.sqlteam.com/jamesw/archive/2010/07/28/datatypes-translation-between-Oracle-and-SQL-Server-part-1.aspx

  • Database SQL Server (read-only mode) in Oracle SQL Developer

    Hello

    I have connected the database server SQL with Oracle SQL Developer 3.2.10.09, everything looks good except that I can only browse the data, I can not change the data in the tables may not add new or delete lines. Query is also disabled (I got the message: Query Builder is not supported for this connection type.) I used a third of JDBC drivers - jtds - 1.2.6.jar as my connection to SQL server. Is there a way to change the data in the tables?

    Thank you.

    As much as I KNOW edition data in table in the grid are possible with an Oracle database. On MS SQL, you can use update instructions on the worksheet.

    Hope that helps,
    dhalek

  • How to check for number of RPC in SQL Server 2000?

    Please let me know how check the number RPC in sql server 2000.

    Hello

    You should post this question in the TechNet forums.

    Forums TechNet - Windows 7 IT Pro

    http://social.technet.Microsoft.com/forums/en/category/w7itpro

  • Windows 7 64 bit Pro connects to SQL Server on the Windows Server 2008 R2 Standard domain

    I put upgraded to Windows 7 Professional computers to Windows XP Professional, but I have a problem with getting one of software programs management of stock that allows us to connect to our SQL Server 2008 R2 Standard Windows on new Windows 7 computers.

    Our computers are connected to a domain, and therefore SQL Server. Computers Windows XP allows each user to standard domain to connect and to connect to SQL Server via the stock management software.

    But on the standard domain of Windows 7 Pro computer users unable to connect to SQL Server, but administrator accounts of area on the same Windows 7 Pro computers can connect to SQL Server through the inventory control program.

    I have set up the alias of the server, the server name and port number via the SQL Server Client Network utility ( cliconfg.exe ) so I know this isn't the problem because it works when I'm logged on as a domain administrator.

    There seems to be something to do with permissions of user domain and Windows 7 Pro. There seems to be a change from Windows XP Pro to Windows 7 Pro that does not allow standard domain users to connect to a SQL Server. But I can't find anything about and cannot practice how to solve this problem, except to make all users, domain administrators that is obviously not a good thing to do. So basically I think I need to create a group policy that allows users to connect to SQL Server, but I have no experience in doing this and don't know where to start.

    Thank you for all that you guys help and I hope someone can give me the solution to this problem.

    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.technet.Microsoft.com/forums/en-us/home

    http://social.msdn.Microsoft.com/forums/en-us/home

Maybe you are looking for