Forum Replies Created

Viewing 15 posts - 451 through 465 (of 486 total)

  • RE: adding 2nd instance to existing 2005 Cluster

    You can have more than one instance on the clustered resources however don't try it out for the first time on your production server.

    if you have hardware you can setup...

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Computed column error

    Can you please provide the source and destination table creation scripts and some sample data? Otherwise no one can really help you.

    MCITP SQL 2005, MCSA SQL 2012

  • RE: SQL Server Installation Through Command Prompt

    You can also create unattended installation using .iss files

    MCITP SQL 2005, MCSA SQL 2012

  • RE: How can I export all table names plus column names from sql?

    try This.

    SELECTo.Name as TableName,

    c.Name as ColumnName,

    t.name as DataType,

    t.length as [DataLength],

    c.collation

    FROM sysobjects o

    JOIN syscolumns c

    ON o.id = c.id

    JOIN systypes t

    ON c.xtype = t.xtype

    WHERE o.xtype = 'u'

    ORDER By o.name

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Missing SQL Performance counters from perfmon

    Thanks I had a look none of the SQL Server Counters are there. I have been googling and it appears that its a fairly common problem on Windows 2008,...

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Error Handling

    As you havn't posted any sample data or table srtucture this example below might not be what your looking for but might give you some inspiration.

    It is a cursor which...

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Certification 70-443 and 70-444

    the book does cover everything you need for the exam, the only other real substitute is experience and practice.

    I would recommend the testing software from

    http://www.selftestsoftware.com.

    This helps assess your knowledge...

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Certification 70-443 and 70-444

    touchmeknot (6/22/2010)


    Hello RTaylor/all,

    I am also interested in taking the certification - 70-433.

    Can you please let me know, what are the resources to be followed ?

    Thanks in advance!

    I would use the...

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Import of XML files

    Emailed you the two test xml files hope fully should give you some ideas.

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Import of XML files

    John here is a SPR I created that might help:

    I can send you the xml files if you can pm me an email address.

    IF OBJECT_ID ('AxSp_Process_XML_File','P') IS NOT NULL

    DROP PROCEDURE...

    MCITP SQL 2005, MCSA SQL 2012

  • RE: SQL 2008 R2 Cluster Setup Documentation

    Technet has a really good whitepaper called:

    Failover Clustering for Microsoft SQL Server 2005 and SQL Server 2005 Analysis Services

    Writers: Allan Hirt (Avanade, Inc.) and Dave Whitney (Microsoft)

    2008 Clustering is...

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Advice for getting First SQL Job

    I started out in application support for a software house that used SQL Server 6.5 as the database platform, this let me learn alot of usefull skills in SQL and...

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Return Dynamic SQL Results to a Table

    Hi,

    Option two works well. Thanks.

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Return Dynamic SQL Results to a Table

    Thanks for the help XML is not my forte but it least gives me a head start. Thank You.

    MCITP SQL 2005, MCSA SQL 2012

  • RE: Ordering Results

    The second suggestion gave the better performance of the two with exactly the results I was looking for.

    Thank You

    MCITP SQL 2005, MCSA SQL 2012

Viewing 15 posts - 451 through 465 (of 486 total)