Viewing 15 posts - 21,946 through 21,960 (of 59,072 total)
I'm not sure it's just a screen reader having that problem. I don't use a screen reader and I see that a lot. Even Steve Jones has one...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 2:02 pm
Personally, I sometimes think some of that is a line of hooie from SAN admins that have their own agenda or are, maybe, just lazy. I'm not a SAN...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 2:00 pm
Still, there are some physics involved and people tend to forget that when it comes to SANs. The more sets of read/write heads and platters (collectively referred to as...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 1:48 pm
From the article
Ultimately we all want the same thing. Better software delivered to customers faster. We want to Ship Safe, and Ship Often.
Ah, if only THAT were true and then...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 1:41 pm
I guess I'd have to ask why anyone might think this is a new idea. Isn't this the purpose of things like databases?
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 1:36 pm
I'm not having such a problem and I have IE 11.
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 1:33 pm
http://www.sqlservercentral.com/articles/comma+separated+list/71700/
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 1:32 pm
peterausger (1/8/2015)
I have following table
id id1 id2 id3 id4 ...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 11:36 am
OwnSQL (1/10/2015)
Hi I have to create a table with the followingAccountnumber,DOB,FullName,Accountopendate,currentbalance
I am having troubles:
What data type should I use for DOB?
Use the DATE datatype, unless you're anticipating doing some...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 11:07 am
Welsh Corgi (1/10/2015)
I can work around them if they only perfume 1 backup per day.
We have a...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 10:56 am
Dee Dee-422077 (1/9/2015)
My example data as this:
ID code1 code2
1 a ...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 10:39 am
Eirikur Eiriksson (1/9/2015)
Dee Dee-422077 (1/9/2015)
My example data as this:
ID code1 code2
1 a ...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 10:38 am
LinksUp (1/9/2015)
declare @t table
(
ID int
, code1 char
, code2 char
)
insert @t values
(1,'a','m')
,(1,'b','n')
,(1,'c','T')
,(2,'d','m')
,(2,'e','n')
,(2,'f','n')
,(3,'g','m')
,(3,'h','n')
,(3,'i','T')
;with cte as
(
Select id
...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 10:34 am
sickpup (2/17/2011)
So, here's the gameplan:
Identify the NC indexes on the affected DB...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 10:28 am
Why would anyone take the time to "split" the data, clean it, and not normalize it? :blink:
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2015 at 6:54 am
Viewing 15 posts - 21,946 through 21,960 (of 59,072 total)