Forum Replies Created

Viewing 15 posts - 46 through 60 (of 3,221 total)

  • RE: Finding and picking from Duplicates...

    This is something you could test.

    CREATE TABLE #S(FirstName VARCHAR(20), LastName VARCHAR(20), Address VARCHAR(20), City VARCHAR(20), State VARCHAR(2)

    , SSN VARCHAR(20), SomeNumber VARCHAR(20))

    INSERT INTO...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: SSIS objects (MS SQL 2005)

    This might be of use:

    http://technet.microsoft.com/en-us/library/ms166351(v=sql.90).aspx

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: T-SQL counts

    Nice simple question

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Are the posted questions getting worse?

    Greg Edwards-268690 (10/1/2013)


    ChrisM@Work (10/1/2013)


    Chap who sits opposite me here is visiting SF next week and has just found out that Alcatraz has closed. He may be the first to start...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: synch two tables

    Help those who want to help you. Please post the table definitions, the trigger code, along with some sample data.

    To do this easily refer to the link in my...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Filestream data

    Nice question to end the week ............

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Reserved Words - 1

    colt (9/25/2013)


    I picked the correct answer of 5 hours.

    But got...

    Sorry - you were wrong

    Correct answer:

    5 hours is returned by the SELECT statement, The create table statement succeeds

    The Questions are:...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: SQL Server downtimes

    First of all, this proc is NOT mine but ran across it here on SSC

    CREATE PROC [dbo].[SQL_Last_Started]

    /* Brian K. McDonald, MCDBA, MCSD

    ...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Dynamic Query

    oops

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: script - growing database.

    This will give you the current size of the database;

    select SIZE AS '8k PAGES' FROM sys.database_files WHERE TYPE = 0

    run this as a select, inserting the output into a table.

    Then...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Insert date in yyyy-mm format

    This might be what you are looking for:

    SELECT CONVERT(VARCHAR(7), GETDATE(), 111) AS [YYYY/MM]

    Result:

    2013/09

    ]

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: List the available fields in a DBCC command

    You might want to attempt this:

    CREATE TABLE #LogData

    (CurrentLSNsysname varchar(50),Operationsysname varchar(50)

    ,Contextsysname varchar(50),

    TransactionIdsysname varchar(50),LogBlockGenerationint int)

    insert into #LogData...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Any *easy* way to compare database schemas, without a 3rd party tool?

    Checked using my play database and it went back to 9/17 (2 days) and my play DB gets shut down each night.

    But of course that is a very, very short...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Any *easy* way to compare database schemas, without a 3rd party tool?

    Not sure if this will give you all you require, have you tried:

    Using SSMS

    Right click on DB

    Select Reports

    Click on Schema...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Accidental DBA - Where to Start? (General Question)

    defyant_2004 (9/18/2013)


    Hello,

    I will be taking over the role of a SQL Server DBA for my company. Our SQL Servers have always been maintained by our Server Admins. I...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

Viewing 15 posts - 46 through 60 (of 3,221 total)