Viewing 15 posts - 4,321 through 4,335 (of 8,761 total)
Brandie Tarvin (10/30/2015)
October 30, 2015 at 1:35 pm
jasona.work (10/30/2015)
Brandie Tarvin (10/30/2015)
October 30, 2015 at 1:30 pm
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...
October 30, 2015 at 11:55 am
Piling on, this is a perfect case for TRY_CONVERT, unfortunately not available before 2012
๐
October 29, 2015 at 2:34 pm
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...
October 29, 2015 at 2:21 pm
Ed Wagner (10/29/2015)
October 29, 2015 at 2:00 pm
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....
October 29, 2015 at 1:42 pm
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 /...
October 29, 2015 at 1:24 pm
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...
October 29, 2015 at 2:02 am
Admingod (10/28/2015)
October 28, 2015 at 5:37 pm
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...
October 28, 2015 at 5:04 pm
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...
October 28, 2015 at 4:59 pm
Ed Wagner (10/28/2015)
Eirikur Eiriksson (10/28/2015)
Ed Wagner (10/28/2015)
allnelsons (10/28/2015)
October 28, 2015 at 4:53 pm
Jeff Moden (10/28/2015)
Eirikur Eiriksson (10/28/2015)
Ed Wagner (10/28/2015)
Eirikur Eiriksson (10/28/2015)
happygeek (10/28/2015)
nibbleQuark
String
Tension
"Wait-till-last-minute"
(83-code-reviews-in-2-days-on-urgent-project :sick::blink::unsure:)
Ultimate tensile strength (UTS)
October 28, 2015 at 4:05 pm
Ed Wagner (10/28/2015)
Eirikur Eiriksson (10/28/2015)
happygeek (10/28/2015)
nibbleQuark
String
Tension
October 28, 2015 at 3:48 pm
Viewing 15 posts - 4,321 through 4,335 (of 8,761 total)