Viewing 15 posts - 5,446 through 5,460 (of 8,753 total)
Brandie Tarvin (5/1/2015)
May 1, 2015 at 5:22 am
Grant Fritchey (5/1/2015)
... I'd suggest moving this to a larger drive so you can have it be a whopping 4gb in size.
That's a giant leap, maybe 3328 Mb would be...
May 1, 2015 at 4:47 am
Grant Fritchey (5/1/2015)
If you're only doing a SELECT operation, there's no reason to do a TRY/CATCH.
TRY / CATCH is as valid / useful in SELECT as in other DML code,...
May 1, 2015 at 4:36 am
Quick suggestion
😎
use mysql1
;WITH XMLNAMESPACES('http://schemas.openehr.org/v1' as bp,'http://www.w3.org/2001/XMLSchema-instance' as xsi,'OBSERVATION' as type)
select * from (
select
m.c.value('(/bp:magnitude/text())','int') as systolisch
from
[schema_name].[table_name] [alias]
cross apply [alias].[xml column name].nodes('/bp:content/bp:data/bp:events/bp:data/bp:items/bp:value') as m(c))m;
May 1, 2015 at 2:07 am
New Born DBA (4/30/2015)
May 1, 2015 at 2:00 am
Quick suggestion have a look at Glen Berry's article Balancing Your Available SQL Server Core Licenses Evenly Across NUMA Nodes[/url]
😎
May 1, 2015 at 1:39 am
Simple solution
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_SAMPLE_STATUS') IS NOT NULL DROP TABLE dbo.TBL_SAMPLE_STATUS;
CREATE TABLE dbo.TBL_SAMPLE_STATUS
(
Timestamp DATETIME...
May 1, 2015 at 1:11 am
DicksonMulwa (4/30/2015)
May 1, 2015 at 12:54 am
SQLDB101 (5/1/2015)
May 1, 2015 at 12:47 am
WhiteLotus (4/30/2015)
Eirikur Eiriksson (4/30/2015)
WhiteLotus (4/30/2015)
HI ALL,Can I change the Initial Size into 1 GB for example ?
No, you cannot reduce the size of this file without either purging data or...
April 30, 2015 at 10:44 pm
sharonsql2013 (4/30/2015)
Say today is April 30 which is Week 18th but since its the middle...
April 30, 2015 at 10:39 pm
Quick thought, looks to me like an overkill unless IMPLICIT_TRANSACTIONS are set ON in either the code or the Server's Connection Properties.
😎
April 30, 2015 at 10:12 pm
WhiteLotus (4/30/2015)
HI ALL,Can I change the Initial Size into 1 GB for example ?
No, you cannot reduce the size of this file without either purging data or compacting/compressing the content.
😎
My...
April 30, 2015 at 9:55 pm
Steve Jones - SSC Editor (4/30/2015)
...but where do you start?
Good question Steve, I'm chipping in my 2 Cents
😎
Finding a problematic code which hasn't been executed since the last reboot or...
April 30, 2015 at 9:47 pm
Viewing 15 posts - 5,446 through 5,460 (of 8,753 total)