Forum Replies Created

Viewing 15 posts - 3,811 through 3,825 (of 9,244 total)

  • RE: Checking columns in two similar tables

    gautham.gn (1/3/2014)


    I want to find those columns which are in main table but are not present in _dup table.

    Try this

    SELECTc.TABLE_SCHEMA

    , c.TABLE_NAME

    , c.COLUMN_NAME

    FROM INFORMATION_SCHEMA.COLUMNS c

    LEFT OUTER JOIN INFORMATION_SCHEMA.COLUMNS cd

    ON c.TABLE_SCHEMA =...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Memory Allocation Across Multiple Database Instances

    arrjay (1/2/2014)


    All 5 database instances are being used by the users.

    sounds like you're hitting this from an Oracle terminology point, theyre different entirely.

    Each instance will default to...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: High Availability Clustering and SQL SERVER 2008

    similar to HP Polyserve then by the sound of it.

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: WS2008 R2 in place upgrade and SQL Server 2008 R2 gotchas?

    Ginga (12/31/2013)


    Hi,

    We have a server that needs more memory but we've hit the 32GB limit imposed by Windows Server 2008 R2 Standard. We plan to perform an in place...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Please define SERVERPROPERTY('ComputerNamePhysicalNetBIOS')!!

    WebTechie38 (1/2/2014)


    Hello,

    I am trying to document the environment I am working at.

    I want to document our clustered servers.

    1) Server Name

    2) Virtual Server Name

    3) Primary node name

    4) ...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: High Availability Clustering and SQL SERVER 2008

    So you're replicating the database storage drives at the storage level, no HA on the Windows or SQL level, correct?

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving files while the database is online

    For more on moving database files in SQL Server see my guide at this link[/url], now to the issue at hand

    ramana3327 (1/2/2014)


    I tried the following code

    use test_copy

    alter database test_copy

    MODIFY FILE...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Account for SQL Server Agent

    JimS-Indy (1/2/2014)


    What I was looking for was "standard" practice. If you set up a SS in an AD environment, and SQL Server Agent will need to access a network share,...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Database using SAN

    niver (1/2/2014)


    yes it is a FC connection, but what im looking for is an implementation that all the sysdatabases and production databases is located to the SAN and what is...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: High Availability Clustering and SQL SERVER 2008

    darklight_arizona (1/2/2014)


    Thanks Perry Whittle

    You mean to say we put all the system databases (like master, msdb, temdb etc)

    on a shared disk and these databases are common to both the nodes.

    Active...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Database using SAN

    Grant Fritchey (1/2/2014)


    100% true. But, you probably wouldn't be asking about where to put storage if you had no choice in the matter.

    Sure, about the only time is when migrating...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Trace file error

    Krishna1 (4/9/2013)


    DECLARE @filename NVARCHAR(1000);

    DECLARE @bc INT;

    DECLARE @ec INT;

    DECLARE @bfn VARCHAR(1000);

    DECLARE @efn VARCHAR(10);

    -- Get the name of the current default trace

    SELECT @filename = CAST(value AS NVARCHAR(1000))

    FROM ::fn_trace_getinfo(DEFAULT)

    WHERE traceid = 1 AND...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: How to keep logshipping up after failover

    Follow this knowledge base article from MS

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Transactional Replication Questions and Concerns

    JoshDBGuy (12/30/2013)


    and need to replicate/mirror/copy/log ship to another server in the cloud.

    First thing to do is to decide on which you will use sounds like you have thought about it...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Database using SAN

    Grant Fritchey (1/2/2014)


    If you want faster performance for the system databases, you might consider local storage.

    Unless its an FCI then you are required to use shared storage not local

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 3,811 through 3,825 (of 9,244 total)