Forum Replies Created

Viewing 15 posts - 4,321 through 4,335 (of 8,761 total)

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (10/30/2015)


    Someone needs to have a talk with that David Burrows guy. He's talking crazy in another thread. Like suggesting I could use SQL Server tables to solve a...

  • RE: Are the posted questions getting worse?

    jasona.work (10/30/2015)


    Brandie Tarvin (10/30/2015)


    Someone needs to have a talk with that David Burrows guy. He's talking crazy in another thread. Like suggesting I could use SQL Server tables to solve...

  • RE: Which gives the greatest points?

    Thank you all for giving this a try;-)

    ๐Ÿ˜Ž

    (mis) Quoting William Edward Hickson

    Tis a lesson you should heed:

    Try, try, try again.

    If at first you don't succeed,

    Try, try, try again.

    that's 15...

  • RE: CASE WHEN SELECT Help.

    Piling on, this is a perfect case for TRY_CONVERT, unfortunately not available before 2012

    ๐Ÿ˜Ž

  • RE: Update a #table using where clause

    Further on Luis's fine answer, works fine and unless there is something else affecting the code that we don't know of, then there isn't much to do;-)

    ๐Ÿ˜Ž

    You can add some...

  • RE: Table Space growth based on each year

    Ed Wagner (10/29/2015)


    That's pretty slick, Eirikur. I appreciate how you use string replacement using the rows in sys.databases to generate the final SQL to fire. I've noticed that...

  • RE: Table Space growth based on each year

    Ed Wagner (10/29/2015)


    Jeff Moden (10/29/2015)


    Ed Wagner (10/29/2015)


    That's pretty slick, Eirikur. I appreciate how you use string replacement using the rows in sys.databases to generate the final SQL to fire....

  • RE: Need output in single row

    New persopn (10/29/2015)


    Hi All,

    I need out put in single row for below 2 queries using joins

    SELECT [total_physical_memory_kb] / 1024 AS [Total_Physical_Memory_In_MB],

    CPU_Count AS NumberofCPU

    FROM [master].[sys].[dm_os_sys_memory]

    CROSS JOIN sys.dm_os_sys_info

    SELECT d.NAME,(SUM(mf.size) * 8 /...

  • RE: how to get XML SCHEMA COLLECTION definition

    To get the information on the XML Schema collections use the sys.xml_schema_collections view and the xml_schema_namespace function

    ๐Ÿ˜Ž

    SELECT

    SXSC.name

    FROM sys.xml_schema_collections SXSC;

    SELECT xml_schema_namespace(N'[RELATIONAL SCHEMA]',N'[XML SCHEMA...

  • RE: Table Space growth based on each year

    Admingod (10/28/2015)


    I am populating all the table information to main table on daily basis based on date time stamp. However, how to create a script to query against the table....

  • RE: Table Space growth based on each year

    Admingod (10/28/2015)


    Does there a way or script to find the rows, space used by the specific tables based on every year.

    Thanks

    No, you have to monitor/audit it yourself. Normally I use...

  • RE: Retrieving VIEW Metadata

    Angelindiego (10/28/2015)


    I ended up using INFORMATON_SCHEMA.COLUMNS. I needed what info I gleaned from that view. Thank you so much for responding!!!

    Quick question, Luis's suggestion points to the same...

  • RE: Tally OH! An Improved SQL 8K โ€œCSV Splitterโ€ Function

    Ed Wagner (10/28/2015)


    Eirikur Eiriksson (10/28/2015)


    Ed Wagner (10/28/2015)


    allnelsons (10/28/2015)


    So, question about these splitter functions (which are pretty much the most used tools in my arsenal, btw!), are they faster/more efficient being...

  • RE: Today's Random Word!

    Jeff Moden (10/28/2015)


    Eirikur Eiriksson (10/28/2015)


    Ed Wagner (10/28/2015)


    Eirikur Eiriksson (10/28/2015)


    happygeek (10/28/2015)


    nibble

    Quark

    String

    Tension

    "Wait-till-last-minute"

    (83-code-reviews-in-2-days-on-urgent-project :sick::blink::unsure:)

    Ultimate tensile strength (UTS)

  • RE: Today's Random Word!

    Ed Wagner (10/28/2015)


    Eirikur Eiriksson (10/28/2015)


    happygeek (10/28/2015)


    nibble

    Quark

    String

    Tension

Viewing 15 posts - 4,321 through 4,335 (of 8,761 total)