Viewing 15 posts - 7,156 through 7,170 (of 14,953 total)
I don't believe that's something you can control directly. Could be mistaken, but I don't think so.
January 27, 2010 at 10:49 am
Interesting. I saw the exact same problem on this site, by another person, just a few months ago.
Different wording for the explanation, but the exact same rules.
Is this a...
January 27, 2010 at 10:48 am
I have to agree with the earlier post that this isn't limited to IT by any means.
I've known too many burned out salespeople, accountants, managers, etc., to think it applies...
January 26, 2010 at 10:10 am
Run each one a million times, or least a few thousand, and see which takes less time. A lot of that will depend on environment it's running in.
January 26, 2010 at 6:35 am
James Goodwin (1/26/2010)
You want to search through your code to find out all the places that reference this table to check for possible problems before you make the structural change
I...
January 26, 2010 at 6:32 am
jcrawf02 (1/25/2010)
Clouds push complexity to the background and allow users to focus on what...
January 26, 2010 at 6:15 am
If you have a Numbers table, you could do this:
;with Names (Name, Number) as
(select @UserName as Name, 0
union all
select @NewName + cast(Number as varchar(10)), Number
from dbo.Numbers
where Number > 0),
Name (Name)...
January 25, 2010 at 2:04 pm
Have you looked in sys.server_principals and sys.sql_logins?
January 25, 2010 at 1:56 pm
Someone mentioned the idea of prefixing with the company name. I've seen that, and it's a pain to deal with.
At my last job, every database started with an abbreviation...
January 25, 2010 at 1:43 pm
GilaMonster (1/25/2010)
Greg Edwards-268690 (1/25/2010)
Just a thought...If this is development, you may want to review the design.
Absolutely. Comma-delimited lists in a column are a violation of 1st Normal Form and...
January 25, 2010 at 1:37 pm
GilaMonster (1/25/2010)
Think I've found the crystal ball... Doesn't seem to be showing much though.
Actually, it seems to be saying the answer is cloud computing...
January 25, 2010 at 1:34 pm
Grant Fritchey (1/25/2010)
January 25, 2010 at 12:19 pm
Steve Jones - Editor (1/25/2010)
Looks like The Thread is alive and well. Good to be back and hoping everyone behaved over the last week.
Well, we always "behave", it's just how...
January 25, 2010 at 9:43 am
I dislike prefixing database objects.
I'm with the "you can't exec a table, so why does the name need to say so?" camp.
I've replaced tables with views (for backwards compatibility), much...
January 25, 2010 at 9:38 am
CirquedeSQLeil (1/22/2010)
GSquared (1/22/2010)
Right-click on the database in Management Studio, and select Reports, then select...
January 23, 2010 at 9:02 am
Viewing 15 posts - 7,156 through 7,170 (of 14,953 total)