Forum Replies Created

Viewing 15 posts - 661 through 675 (of 3,221 total)

  • RE: Are SQL Server 2008 case-sensitive?

    To determine Server collation and/or other collation setting try this:

    --Server collation

    SELECT SERVERPROPERTY ('collation') AS 'Server collation'

    --Database collation

    SELECT DATABASEPROPERTYEX('Northwind', 'Collation') DB_SQLCollation;

    --Collations used in tables

    SELECT OBJECT_NAME(Object_Id) AS 'Table Name',name AS 'Column name',...

    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?

    Steve Jones - SSC Editor (2/13/2012)


    Jeff Moden (2/12/2012)


    Does anyone know how to block "Site Owners" in the "Recent Posts" for today? Although I certainly appreciate links to blog subjects,...

    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: Datafile reach 100% size?

    Hmmm not as many unused indexes as I thought might be there. Now with the names of the table using those unused indexes you could run:

    The undocumented procedure ...

    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?

    Jeff Moden (2/12/2012)


    Does anyone know how to block "Site Owners" in the "Recent Posts" for today? Although I certainly appreciate links to blog subjects, it's gotten way out of...

    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: Create an object

    Assuming it is T-SQL procedure

    CREATE { PROC | PROCEDURE } [schema_name.] procedure_name [ ; number ]

    [ { @parameter [ type_schema_name. ] data_type }

    ...

    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: SELECT statement issue, spread by YYYYMM

    LutzM (2/12/2012)


    Digs (2/11/2012)


    Sir, I am an old fart working on a private project...just needed a little help !

    Thanks 🙂

    "A little help" in the meaning of "Give me some fish" or...

    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: Datafile reach 100% size?

    Yet again I see another question which obviously effects the size of your database at:

    http://www.sqlservercentral.com/Forums/Topic1250789-146-1.aspx

    Now how about try this T-SQL and we can see if any of those indexes 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: Datafile reach 100% size?

    Like most questions ... the answer is "It Depends"

    Because of that I strongly suggest you read:

    http://sqlcat.com/sqlcat/b/top10lists/archive/2007/11/21/storage-top-10-best-practices.aspx

    Before making your decision.

    -----Found after above was posted -----------------

    I see in another post of yours...

    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: turn off e-mail notifications

    Using SSMS:

    On any forum page

    1. Welcome banner - Clikc on "My Account"

    2.My account

    Profile

    ...

    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: Securing data from internal theft

    LutzM (2/11/2012)


    shahgols (2/10/2012)


    You got great points Rob, thanks for that!

    And thanks for your response Burninator. Are you guys allowed to use USB or connect your cell phones to your...

    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: Securing data from internal theft

    shahgols (2/10/2012)


    Thanks for your response. I wonder how Banks ensure that the DBAs or developers do not walk off with their data. And health insurance companies. Anyone...

    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?

    Roy

    One item I failed to mention, the outline/subject matter for the meeting was distributed by my manager the day before the scheduled meeting

    Another "trick" my manager used. Had coffee/tea/donuts/pastry...

    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?

    Roy

    Thx for all the advice. Yes, they have plans for me to go higher up in the management. I have been asked to manage all Development teams and projects. It...

    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: Calculate Totals for ID numbers that have more than one entry

    Try this:

    SELECT ID,Dated,SUM(Amount) FROM #T GROUP BY ID,Dated ORDER BY ID

    Of course alter the FROM #T to FROM substitue your tables name

    My resutl:

    12012-02-03 00:00:00.000250.00

    22012-02-04 00:00:00.00065.00

    32012-02-07 00:00:00.000500.00

    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?

    Roy Ernest (2/10/2012)


    Couple of weeks back I told you all that I got a great review from work. Now they have changed my role. They want me to manage more...

    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 - 661 through 675 (of 3,221 total)