Inventory to SQL

is it possible to push the inventory-data directly to a sql-database (win2000)
i search the web for a good instruction to configure the
inventory-service
for a ms-sql-database , but can`t find .
i found something of many sites, but nothing was complete .
what i need is a step by step - instruction.
who knows a good web-link or something ?
thanks to all for any help
regards mario

The inventory is on a SQL database... Sybase ASA is just that a SQL
Server.
What is it that you want to do?
Tim
On Wed, 21 May 2003 09:42:37 GMT, [email protected] wrote:
>is it possible to push the inventory-data directly to a sql-database
>(win2000)
>i search the web for a good instruction to configure the
inventory-service
>for a ms-sql-database , but can`t find .
>i found something of many sites, but nothing was complete .
>what i need is a step by step - instruction.
>who knows a good web-link or something ?
>thanks to all for any help
>
>
>regards mario
No Direct e-Mail Please!
Tim Heywood
Independent Consultant
Scotland
(God's Country)
Novell Support Connection SYSOP
In theory, practice and theory are the same,
In practice they are different!

Similar Messages

  • ZENWorks Inventory on SQL?

    We currently have our inventory being stored in the Novell sybase db, is
    it possible to have it store to a Microsoft SQL DB instead? If so is there
    a TID on the procedure?

    http://www.novell.com/documentation/...a/af4erl9.html
    Shaun Pond

  • Fifo method inventory valuation sql query.

    Dear all,
    I want to stock valuation by FIFO method. if some one have any solution please give me advise.
    thanks

    You won't get any answers with a question like that...
    What is "to stock valuation by FIFO method"?
    Give us an example.

  • How to find out who installed SQL Server in Big orgnization?

    Hi all,,,
    I want to find out who installed SQL server in their computers/servers. The internet is open and it's easy to install SQL server EXPRESS. Iam not looking for the command which will results computers in my vlan only. Iam looking for a query to result out
    all SQL installed with different Vlan within the organization.
    Anyway to find them out?!  Thanks.

    No need to know WHO install it but is it possible to know the Host name that SQL installed in?!
    You asked for "who", not for "where".
    You can use MS MAP =
    Microsoft Assessment and Planning Toolkit : "Software Usage Tracker Feature Overview ....
    SQL Server" to get reports, which software is running on which machine.
    Or you can use this PowerShell Script
    Create Inventory of SQL Server in Network as Html
    For both you need permissions to fetch the required information from all machines, of course.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Some of the SQL Server 2012 are not getting monitored in SCOM 2012 SP1.( basics monitoring is happening, expect SQL role)

    Found that all the SQL servers are getting monitored, expect few servers which are having SQL server 2012 role.
    proxy is enabled for these servers, when I checked discovered inventory for SQL 2012 database unable to find these servers in that list.
    and other servers having SQL Server 2012 monitoring properly issue is with only few servers.

    Hi,
    thanks for the all the input, we are using service account as windows account instead of action account !!
    will that also affect discovery of SQL role?
    and also found that there are many alerts in SCOM console, with alert description :
    SQL Server cannot authenticate using Kerberos because the Service Principal Name
    (SPN) is missing, misplaced, or duplicated.
    please let me know how we can resolve this issue, will it affect SQL discovery as well ?

  • Generating an  html report based on table at sql 2005 db

    Hi
    I want to create an html report based on a table named inventory on sql server 2005 database.
    first code used to generate an output report
        try {
                // TODO add your handling code here:
                String s = "<html> <body> <table border=1><caption> Inventory Report </caption>";
                s += "<tr><td>Item_id<td>item_name<td>Existing quantity</td><tr><td>3<td>4<td> <td>";
                byte[] sb = s.getBytes();
                FileOutputStream fs = null;
                try {
                    fs = new FileOutputStream("D:\\Report\\Report.html");
                } catch (FileNotFoundException ex) {
                    Logger.getLogger(mileshframe.class.getName()).log(Level.SEVERE, null, ex);
                fs.write(sb);
                fs.close();
            } catch (IOException ex) {
                Logger.getLogger(mileshframe.class.getName()).log(Level.SEVERE, null, ex);
    Second jdbc  code for connection and select all records in the table
    try {
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                 con = DriverManager.getConnection("jdbc:odbc:MerchandiseCon","sa","sql123#");
                st = con.createStatement( );
    ResultSet rset=st.executeQuery("Select Item_code,Item_Name,item_cost,item_quantity  from Inventory");
         String s="";
    while(rset.next())
        s+=(rset.getString(1)+"\t\t"+rset.getString(2)+"\t"+rset.getString(3)+"\t"+rset.getString(4)+"\n");
          st.close();
                con.close();
         catch(ClassNotFoundException ex)
             ex.printStackTrace();
          catch(SQLException ex)
             ex.printStackTrace();
            }                             I want someone helps me to merge two codes into one code to generate an output html report.
    thanks in advance

    This is my trial but not the desired result ,it's displayed the title and a line only
        private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            // TODO add your handling code here:
                          String s = "<html> <body> <table border=1> <caption>Report title</caption>";
                byte[] sb = s.getBytes();
                FileOutputStream fs = null;
                try {
                // TODO add your handling code here:
                try {
                    fs = new FileOutputStream("D:\\Report\\myeport.html");
                } catch (FileNotFoundException ex) {
                    Logger.getLogger(NewJFrame.class.getName()).log(Level.SEVERE, null, ex);
                fs.write(sb);
                fs.close();
            } catch (IOException ex) {
                Logger.getLogger(NewJFrame.class.getName()).log(Level.SEVERE, null, ex);
                try {
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                 con = DriverManager.getConnection("jdbc:odbc:MerchandiseCon","sa","sql123#");
                st = con.createStatement( );
    ResultSet rset=st.executeQuery("Select Item_code,Item_Name,item_cost,item_quantity  from Inventory");
    while(rset.next())
                   s+=("<tr><td>"+rset.getString("Item_Code")+"</td><td>"+rset.getString("Item_Name")+"</td><td>"+rset.getString("item_cost")+"</td><td>"+rset.getString("item_quantity")+"</td></tr>");
                try {
                // TODO add your handling code here:
                try {
                    fs = new FileOutputStream("D:\\Report\\myeport.html");
                } catch (FileNotFoundException ex) {
                    Logger.getLogger(NewJFrame.class.getName()).log(Level.SEVERE, null, ex);
                fs.write(sb);
                fs.close();
            } catch (IOException ex) {
                Logger.getLogger(NewJFrame.class.getName()).log(Level.SEVERE, null, ex);
         st.close();
                con.close();
         catch(ClassNotFoundException ex)
             ex.printStackTrace();
          catch(SQLException ex)
             ex.printStackTrace();
        }

  • How to create SQL server documentation

    Hi,
    for our databases, we use schemaspy to create simple documentation.
    Is there a tool, maybe opensource/freeware, to create a documention for SQL server?
    I'd like to have something like this:
    - Version
    - RAM
    - Settings like maxmemory
    - OS version
    - etc
    And it should run like a script, without looking inside the sql-server.
    Thanks
    Regards,
    Andreas

    Hello Andreas,
    You can use this PowerShell Script to get the many of the required informations:
    Create Inventory of SQL Server in Network as Html
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • PowerShell Script For Finding Database Instance Names

    G'day
    I am trying to get information on a couple of dozen SQL database servers database instances - long story, but our DBA's do not have complete lists at the moment, and I need to find out this information.
    I have done a bit of work with PowerShell (and love it) version 3, however I do not know many SQL commands and was wondering if someone could point me in the right direction please.
    This is the code I have at the moment:
    Get-Service -ComputerName MSQLULTDBS04 | ?{$_.DisplayName -like "*SQL*"} | Select name,DisplayName,status
    It gets the information on the SQL Server install on the remote server.
    What I am trying to do however is get a list of the databases that are running on this server. Can someone help me out please?

    Hello Scott,
    Please have a look at TechNet ScriptCenter:
    Create Inventory of SQL Server in Network as Html
    It lists also all databases, but of course you need permissions to logon to that SQL Servers.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Is it possible to query software inventory report for Oracle SQL developer installation?

    Hi all
    My company requires to generate a report of all kinds of Oracle database access tool. I can find Toad installation from Add/Remove Program and therefore can query for Toad.
    However, Oracle SQL developer is using Java. I cannot see an entry for Oracle SQL developer from Add/Remove Program. Is there a way to query inventory for Oracle SQL developer installation?
    Thanks a lot.
    Regards
    Lic

    You might be able to use software inventory to report on the version of sqldeveloper.exe.
    As the app looks like just a zip you extract to a custom location that might be one method.

  • MAP Toolkit - How to use this MAP tool kit for all SQL Server inventory in new work enviornment

    Hi Every one
     Just joined to new job and planning to do Inventory for whole environment so I can get list of all SQL Server installed . I downloaded MAP tool kit just now. So looking for step by step information to use this for SQL Inventory. If anyone have documentation
    or screen shot and can share would be great.
    Also like to run It will be good to run this tool anytime or should run in night time when is less activity? 
    Hoe long generally takes for medium size environment where server count is about 30 ( Dev/Staging/Prod)
    Also any scripts that will give detailed information would be great too..
    Thank you 
    Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach A.Shah

    Hi Logicinisde,
    According to your description, since the issue regards Microsoft Assessment and Planning Solution Accelerator. I suggestion you post the question in the Solution Accelerators forums at
    http://social.technet.microsoft.com/Forums/en-US/map/threads/ . It is appropriate and more experts will assist you.
    The Microsoft Assessment and Planning (MAP) Toolkit is an agentless inventory, assessment, and reporting tool that can securely assess IT environments for various platform migrations. You can use MAP as part of a comprehensive process for planning and migrating
    legacy database to SQL Server instances.
    There is more information about how to use MAP Tool–Microsoft Assessment and Planning toolkit, you can review the following articles.
    http://blogs.technet.com/b/meamcs/archive/2012/09/24/how-to-use-map-tool-microsoft-assessment-and-planning-toolkit.aspx
    Microsoft Assessment and Planning Toolkit - Technical FAQ:
    http://ochoco.blogspot.in/2009/02/microsoft-assessment-and-planning.html
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • SQL for inventory report

    Hi,
    Does any how any SQL so I can create a report from inventory ledger as below:
    Txn Date Item Description Source Type Source Subinv Quantity UOM Unit Cost Txn Value
    14-JAN-10 159549 TEST Move order 62143 Prosthesis 1.00 EA 94.08200 94.08
    Any help would be great.

    I am trying to recreate the Material account distribution report.

  • Help with sql command for inventory cost change report

    Inventory Cost Changes within date range.
    Columns on report
    Item LastDateChanged CurrentCost PriorCost
    Source File-TransHst (Type 14 is inventory cost change)
    example data
    Type,Item,DtChg,Cost
    14,15825,02/01/2014,357.00
    14,45832,03/15/2014,95725.00
    14,15825,10/01/2013,322.00
    14,45832,06/22/2012,94632.00
    example output needed
    Item   LastDateChanged CurrentCost PriorCost
    15825     02/01/2014                 357.00               322.00    
    Using Crystal Reports 2008 with Oracle Database
    I cannot create sql to retrieve data to create report.
    Need Item, Last Change Date, Current Cost and Prior Cost as output of sql
    Thanks

    HI Jerry,
    I don't know real syntax of your database, try below SQL, you may have to modify the syntax wherever it is required.
    Select t.Item, Max(t.DtChg),(case when year(t.dtchg) = Year(sysdate) then t.Cost else 0) as currentCost,
    (case when year(t.dtchg) = Year(sysdate)-1 then t.Cost else 0) as PriorCost
    From TransHst t
    Where Type=14
    Group by t.Item
    Thanks,
    Sastry

  • Powershell / SQL Inventory and last backup date Skips some servers?

    Good Morning experts... I have a text file with a list of servers.. I am trying to automate a script that scans through them all and checks all databases to ensure everything is getting backed up... It works great (I copied the guts of the script from here,
    I think and modified it so I could "Learn").  The only problem I have is some of the servers report an error saying can not connect and bypasses it.  After the script is over, I can go back and query that single server and it responds correctly..
    Has anyone else come across anything like that?  I will include the script I have been using.. if you had 100+ servers to support with MULTIPLE instances on each how would you do it?
    <#####################################################################
    # Get All instances and Date of last Full / Log Backup of each
    ######################################################################>
    #region Variables
    $TextFileLocation = "C:\serverlist.txt"
    $intRow = 1
    $BackgroundColor = 36
    $FontColor = 25
    #endregion
    #Region Open Excel
    $Excel = New-Object -ComObject Excel.Application
    $Excel.visible = $True
    $Excel = $Excel.Workbooks.Add()
    $Sheet = $Excel.Worksheets.Item(1)
    #endregion
    #Go through text file one at a time
    foreach($instance in Get-Content $TextFileLocation)
    $Sheet.Cells.Item($intRow,1) = "INSTANCE NAME:"
    $Sheet.Cells.Item($intRow,2) = $instance
    $Sheet.Cells.Item($intRow,1).Font.Bold = $True
    $Sheet.Cells.Item($intRow,2).Font.Bold = $True
    for ($column =1; $column -le 2; $column++)
    $Sheet.Cells.Item($intRow, $column).Interior.Colorindex = 44
    $Sheet.Cells.Item($intRow, $column).Font.ColorIndex = $FontColor
    #Increase Row count by 1
    $intRow++
    #Create sub-headers
    $Sheet.Cells.Item($intRow,1) = "Name"
    $Sheet.Cells.Item($intRow,2) = "LAST FULL BACKUP"
    $Sheet.Cells.Item($intRow,3) = "LAST LOG BACKUP"
    #Format the column headers
    for ($col = 1; $col -le 3; $col++)
    $Sheet.Cells.Item($intRow,$col).Font.Bold = $True
    $Sheet.Cells.Item($intRow,$col).Interior.ColorIndex = $BackgroundColor
    $Sheet.Cells.Item($intRow,$col).Font.ColorIndex = $FontColor
    #Finished with Headers, now move to the data
    $intRow++
    [System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.SMO') | Out-Null
    # Create an SMO connection to the instance in servers.txt
    $s = New-Object ('Microsoft.SqlServer.Management.Smo.Server') $instance
    $dbs = $s.Databases
    foreach ($db in $dbs)
    if ($db.Name -ne "tempdb")
    if($db.LastBackupDate -eq "1/1/0001 12:00 AM")
    $fullbackupdate = "Never Backed Up"
    $fgColor = "red"
    else
    #$fullBackupDate= "{0:g2}" -f $db.LastBackupDate
    $fullBackupDate = $db.LastBackupDate
    $Sheet.Cells.Item($intRow, 1) = $db.Name
    $Sheet.Cells.Item($intRow, 2) = $db.LastBackupDate #$fullBackupDate
    if ($db.RecoveryModel.Tostring() -eq "SIMPLE")
    $logBackupDate="Simple"
    else
    #See Date Above..-eq is same as =
    if($db.LastLogBackupDate -eq "1/1/0001 12:00 AM")
    $logBackupDate="Never"
    else
    #$logBackupDate= "{0:g2}" -f $db.LastLogBackupDate
    $logBackupDate = $db.LastLogBackupDate
    $Sheet.Cells.Item($intRow, 3) = $logBackupdate
    $intRow ++
    $intRow ++
    $Sheet.UsedRange.EntireColumn.AutoFit()
    cls
    Am I going about this the correct way, or is there a "Better" way to do this that I have not come across yet?
    Thank you

    Sorry JRV... I will put more of an example here.
    I want to do an inventory of all our our instances and verify if they are being backed up correctly, I just wrote a script to test:
    $TextFileLocation = "C:\servers.txt"
    foreach($instance in get-content $TextFileLocation)
    [System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.SMO') | Out-Null
    $s = New-Object ("Microsoft.SqlServer.Management.SMO.Server") $instance
    $dbs = $s.Databases
    foreach($db in $dbs)
    $location = $db.Name
    $logBackupDate = $db.LastLogBackupDate
    if($db.RecoveryModel.Tostring() -eq "SIMPLE")
    Write-host "$s - $location - SIMPLE Recovery"
    elseif($db.RecoveryModel.ToString() -ne "SIMPLE")
    Write-Host "$s - $location - $logBackupDate"
    output is expected, and everything works fine... But some servers I get the following error:
    PS K:\MyScripts\powershell> . 'C:\Users\scj0025\AppData\Local\Temp\Untitled30.ps1'
    foreach : The following exception was thrown when trying to enumerate the collection: "Failed to connect to server poly04406.".
    At C:\Users\scj0025\AppData\Local\Temp\Untitled30.ps1:9 char:8
    + foreach <<<< ($db in $dbs)
        + CategoryInfo          : NotSpecified: (:) [], ExtendedTypeSystemException
        + FullyQualifiedErrorId : ExceptionInGetEnumerator
    If I go to another script and look at the same server, I get the results I expect:
    Function Get-SQLInstance {  
    <#
    .SYNOPSIS
    Retrieves SQL server information from a local or remote servers.
    .DESCRIPTION
    Retrieves SQL server information from a local or remote servers. Pulls all
    instances from a SQL server and detects if in a cluster or not.
    .PARAMETER Computername
    Local or remote systems to query for SQL information.
    .NOTES
    Name: Get-SQLInstance
    Author: Boe Prox
    DateCreated: 07 SEPT 2013
    .EXAMPLE
    Get-SQLInstance -Computername DC1
    SQLInstance : MSSQLSERVER
    Version : 10.0.1600.22
    isCluster : False
    Computername : DC1
    FullName : DC1
    isClusterNode : False
    Edition : Enterprise Edition
    ClusterName :
    ClusterNodes : {}
    Caption : SQL Server 2008
    SQLInstance : MINASTIRITH
    Version : 10.0.1600.22
    isCluster : False
    Computername : DC1
    FullName : DC1\MINASTIRITH
    isClusterNode : False
    Edition : Enterprise Edition
    ClusterName :
    ClusterNodes : {}
    Caption : SQL Server 2008
    Description
    Retrieves the SQL information from DC1
    #>
    [cmdletbinding()] 
    Param (
    [parameter(ValueFromPipeline=$True,ValueFromPipelineByPropertyName=$True)]
    [Alias('__Server','DNSHostName','IPAddress')]
    #[string[]]$ComputerName = Get-Host "C:\serverlist.txt"
    [string[]]$ComputerName = $env:COMPUTERNAME
    Process {
    ForEach ($Computer in $Computername) {
    $Computer = $computer -replace '(.*?)\..+','$1'
    Write-Verbose ("Checking {0}" -f $Computer)
    Try {
    $reg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey('LocalMachine', $Computer)
    $baseKeys = "SOFTWARE\\Microsoft\\Microsoft SQL Server",
    "SOFTWARE\\Wow6432Node\\Microsoft\\Microsoft SQL Server"
    If ($reg.OpenSubKey($basekeys[0])) {
    $regPath = $basekeys[0]
    } ElseIf ($reg.OpenSubKey($basekeys[1])) {
    $regPath = $basekeys[1]
    } Else {
    Continue
    $regKey= $reg.OpenSubKey("$regPath")
    If ($regKey.GetSubKeyNames() -contains "Instance Names") {
    $regKey= $reg.OpenSubKey("$regpath\\Instance Names\\SQL" )
    $instances = @($regkey.GetValueNames())
    } ElseIf ($regKey.GetValueNames() -contains 'InstalledInstances') {
    $isCluster = $False
    $instances = $regKey.GetValue('InstalledInstances')
    } Else {
    Continue
    If ($instances.count -gt 0) {
    ForEach ($instance in $instances) {
    $nodes = New-Object System.Collections.Arraylist
    $clusterName = $Null
    $isCluster = $False
    $instanceValue = $regKey.GetValue($instance)
    $instanceReg = $reg.OpenSubKey("$regpath\\$instanceValue")
    If ($instanceReg.GetSubKeyNames() -contains "Cluster") {
    $isCluster = $True
    $instanceRegCluster = $instanceReg.OpenSubKey('Cluster')
    $clusterName = $instanceRegCluster.GetValue('ClusterName')
    $clusterReg = $reg.OpenSubKey("Cluster\\Nodes")
    $clusterReg.GetSubKeyNames() | ForEach {
    $null = $nodes.Add($clusterReg.OpenSubKey($_).GetValue('NodeName'))
    $instanceRegSetup = $instanceReg.OpenSubKey("Setup")
    Try {
    $edition = $instanceRegSetup.GetValue('Edition')
    } Catch {
    $edition = $Null
    Try {
    $ErrorActionPreference = 'Stop'
    #Get from filename to determine version
    $servicesReg = $reg.OpenSubKey("SYSTEM\\CurrentControlSet\\Services")
    $serviceKey = $servicesReg.GetSubKeyNames() | Where {
    $_ -match "$instance"
    } | Select -First 1
    $service = $servicesReg.OpenSubKey($serviceKey).GetValue('ImagePath')
    $file = $service -replace '^.*(\w:\\.*\\sqlservr.exe).*','$1'
    $version = (Get-Item ("\\$Computer\$($file -replace ":","$")")).VersionInfo.ProductVersion
    } Catch {
    #Use potentially less accurate version from registry
    $Version = $instanceRegSetup.GetValue('Version')
    } Finally {
    $ErrorActionPreference = 'Continue'
    New-Object PSObject -Property @{
    Computername = $Computer
    SQLInstance = $instance
    Edition = $edition
    Version = $version
    Caption = {Switch -Regex ($version) {
    "^11" {'SQL Server 2012';Break}
    "^10\.5" {'SQL Server 2008 R2';Break}
    "^10" {'SQL Server 2008';Break}
    "^9" {'SQL Server 2005';Break}
    "^8" {'SQL Server 2000';Break}
    Default {'Unknown'}
    }}.InvokeReturnAsIs()
    isCluster = $isCluster
    isClusterNode = ($nodes -contains $Computer)
    ClusterName = $clusterName
    ClusterNodes = ($nodes -ne $Computer)
    FullName = {
    If ($Instance -eq 'MSSQLSERVER') {
    $Computer
    } Else {
    "$($Computer)\$($instance)"
    }.InvokeReturnAsIs()
    } Catch {
    Write-Warning ("{0}: {1}" -f $Computer,$_.Exception.Message)
    When I run this command, I get:
    PS C:\Users\scj0025\Documents> Get-SQLInstance -ComputerName poly04406
    SQLInstance   : SQL642K5_01
    Version       : 9.2.3042.00
    isCluster     : False
    Computername  : poly04406
    FullName      : poly04406\SQL642K5_01
    isClusterNode : False
    Edition       : Enterprise Edition (64-bit)
    ClusterName   : 
    ClusterNodes  : {}
    Caption       : SQL Server 2005
    SQLInstance   : CONSQL2K8
    Version       : 10.0.2531.0
    isCluster     : False
    Computername  : poly04406
    FullName      : poly04406\CONSQL2K8
    isClusterNode : False
    Edition       : Enterprise Edition
    ClusterName   : 
    ClusterNodes  : {}
    Caption       : SQL Server 2008
    I notice to get this information the get-sqlinstance script is looking at the registry.. is that the "Better" way to get an accurate list of this?
    (I understand they are looking for different things, but why wont the first script pick up the different instances on the server, I wonder...)

  • APEX, Oracle SQL Creating Inventory System

    I would like to use XE to create a database to track inventory/shipping/production/forecasting and do analytical reporting in a multi-user, multi production line environment, using bar code scanning, in a client server set up. How powerful/ flexible is APEX? Should I be looking at another reporting tool? Should I be looking to manage the data with Oracle SQL? Good books to recommend that include the basics through complex apps?
    Thank you.
    Wade

    Hi Wade,
    Good books to recommend that include the basics through complex apps?You may want to have a look here at "Application Express Documentation and Tutorials" here: http://www.oracle.com/technology/products/database/application_express/html/doc.html
    The best APEX book (personal opinion) is not out yet, but you can already pre-order it at Amazon. The title "Pro Oracle Application Express" by John Scott (Jes from the forums).
    Thanks,
    Dimitri

  • How to sql server port number to scom inventory

    can some one help me how to add sql server port number to scom inventory 

    To open a port in the Windows firewall for TCP access
    On the
    Start menu, click Run, type WF.msc, and then click
    OK.
    In the
    Windows Firewall with Advanced Security, in the left pane, right-click
    Inbound Rules, and then click New Rule in the action pane (upper right corner).
    In the Rule Type dialog box, select
    Port, and then click Next.
    In the Protocol and Ports dialog box, select
    TCP. Select Specific local ports, and then type the port number of the instance of the Database Engine, In my case we are using the default which is
    1433. Click Next.
    In the Action dialog box, select
    Allow the connection, and then click Next.
    In the Profile dialog box, I am going to Leave
    Domain turned on and turn private and public off. Then click
    Next.
    In the Name dialog box, type "Allow SQL 1433 Inbound” and for a description I am putting in the same. Then click
    Finish.
    Also you can refer below link
    http://blogs.technet.com/b/danstolts/archive/2011/06/08/how-to-open-firewall-port-1433-for-sql-server-database-engine-for-use-with-scom-or-anything-else.aspx
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"

Maybe you are looking for

  • SPM Transformation and Routine are missing in Delivered

    Hi All,         During the transport(From Devlopment to Quality) we received an error message as 'Transformation and Routine are not available in A Version'. Hence the transport has got failed. I tried searching this Object(DSO - 0ASA_DS00) in RSOR -

  • Table which stores the list of active ods objects in BW

    Hi, I am trying to find out the list of active ods objects starting with y and Z, Is there any table which has the information regarding that. For Infoobject I found the table as "RSDIOBJ". Can you plz let me know if there is any table for ods. Thank

  • How do I stop Lion intercepting Control Down in Excel

    Control Up works but Lion grabs left,right, and down. Is there someway to make Lion ignore these when working in excel?

  • Netflix on it's way

    Some stories circulating that BT (and Talk Talk) are about to sign a deal extending their TV offerings by adding Netflix on YV boxes before the year end. Seems that intiially this will be a standalone service BUT articles seem to indicate that negoti

  • MOSS 2007 Search - Crawling is taking longer than usual time since last month for same content sources

    Hi all, Off late we have discovered that content crawling is taking longer than expected also overlapping to next scheduled too. Literally no crawl logs seen for hours. No entry in crawl logs. Is there anyone out here having similar issue? Please sha