Viewing 15 posts - 1 through 15 (of 56 total)
Tempdb, or some other safe, non-critical DB. Master is neither of those.
Have too many times connected to a server to run a bunch of DDL scripts, or compile a...
November 14, 2013 at 3:49 pm
Damn! I want that on a sign above my desk. 😀 Guess I'll have to settle for a bookmark.
November 4, 2012 at 1:01 am
Peter Di (11/3/2012)
November 3, 2012 at 5:35 pm
Great work.
Like many others, I had created reports for some of the admin issues covered here. Sadly (for my colleagues) my reports are not as nice as these.
I'll make...
February 4, 2010 at 8:44 pm
Jeff: Neat. Whether it's the best on SQL Server or not is only partly the point (for me). I just like the different approach to the...
November 17, 2009 at 12:47 am
OK, here's one possible solution, but with a caveat. I'm not a fan of the
query('./../../{somenode}') syntax. Although it works, I've seen some awful performance with climbing...
March 4, 2009 at 8:52 pm
At the risk of being redundant, excellent article, Gail. It should be compulsory "calm down and think" reading for any DBA facing an apparent catastrophe. Bookmarked and link...
February 16, 2009 at 3:57 pm
I think the following will work for you (hard to check without real data)
select
Account.value('(./@Name) [1]' , 'varchar(100)') as accountName
,Account.value('(./../../@Name) [1]' , 'varchar(100)') as deploymentName -- in...
July 20, 2008 at 11:05 pm
Outstanding. I'm on a project much like that one now.
May 14, 2008 at 4:36 am
Adriaan,
I'm rather surprised at the blow-out to ten minutes for that basic shred-the-tokenised-string-to-a-table approach. I've done this several times as a way of dealing with SSRS multi-select, and found it...
August 13, 2007 at 2:00 am
OK, votes are in for "Rant of the decade". Sorry, "Coherent, cogent rant of the decade". Loved it. Thanks Jeff
August 1, 2007 at 1:17 am
I was going to keep out of this until the statement about the design being crap.
The clustered index is there - on that specific column - because it was...
May 23, 2007 at 10:50 pm
I was giving up all hope, and now 2 responses in a day.
Thanks to both respondents. Yeah, I'm having to do the CDATA wrap, but that now means more handling...
March 28, 2007 at 4:49 pm
Your table definition is shown as:
Cia_Id nvarchar 10
Empleado_Id int 4
Ano_Vac int 4
Tipo_Mov nvarchar 50
Fecha_Inicial smalldatetime 4
Periodo_Ano nvarchar 10
Fecha_Final smalldatetime 4
Vac_Valor real 4
Date_Cre smalldatetime 4
Date_Mod smalldatetime 4
User_Id nvarchar 10
That number on the end looks like a data length - is that right? ...
March 7, 2007 at 9:02 pm
Mike, not my post. Judging from the tone of your reply you must be mistaking me for a previous poster. Dunno who originated that script 'cos I don't have the energy to...
February 26, 2007 at 6:26 pm
Viewing 15 posts - 1 through 15 (of 56 total)