Viewing 15 posts - 20,761 through 20,775 (of 59,072 total)
Ken Davis (5/12/2015)
We can assume I will have more space on separate LUNs. FYI a few months ago I estimated the need for 2.5TB of space to keep us...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 12, 2015 at 11:08 am
Just so that no one thinks I'm a Luddite, I absolutely believe in new and better technology. For example, ROW_NUMBER and the other ranking functions are one of the...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 12, 2015 at 8:05 am
Gary Varga (5/12/2015)
Don't worry Jeff. I didn't take it personally. BTW who is this Maj Orrant??? 😛
Heh... he's the voice in my head that I normally talk to so that...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 12, 2015 at 7:51 am
Bill Talada (5/12/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 12, 2015 at 7:47 am
In that case, I recommend major CYA efforts on the part of the DBAs because that's where the blame will end up if audits fail, audit data is missing or...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 11:02 pm
Anything on my questions above, Ken? Also, is the extra disk space you talked about going to be a reality? That would sure simplify things and make this...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 10:22 pm
Lynn Pettis (5/11/2015)
Jeff Moden (5/11/2015)
SELECT OBJECT_NAME(object_id),*
FROM sys.columns
WHERE object_id...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 6:17 pm
Just to be sure, Gary... that wasn't directed at you personally even though I quoted your post.
It's just that I've seen...
<MAJORRANT>
...people actually take the time to setup a...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 4:05 pm
Try this, Bill. The sys.parameters thing isn't for the return of TVFs. sys.columns is.
SELECT OBJECT_NAME(object_id),*
FROM sys.columns
WHERE object_id = OBJECT_ID('nameofyourfunctionhere')
;
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 3:45 pm
Bill Talada (5/11/2015)
Eirikur Eiriksson (5/11/2015)
Bill Talada (5/11/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 3:34 pm
SQL Guy 1 (5/11/2015)
Here is the query that I came up with:
select f1.Operation,
f1.AllocUnitName,
...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 3:31 pm
sonu_mhl (5/11/2015)
HiI have below data & i want record with value 6 & 2013 should be returned. Both the fields are numeric
U_MonthU_Year
122012
12013
22013
32013
42013
52013
62013
Thanks
Glad you got the help you needed...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 11:41 am
Getting back to the subject, can any of the NVARCHAR columns be change to VARCHAR or even INT/BIGINT for things that have numbers in them? It's not a requirement...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 10:55 am
Alan.B (5/11/2015)
If you are talking about doing something...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 10:51 am
Ken Davis (5/11/2015)
My next concern with this big DB is the 2TB disk limit. I...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 11, 2015 at 10:46 am
Viewing 15 posts - 20,761 through 20,775 (of 59,072 total)