Viewing 15 posts - 91 through 105 (of 3,010 total)
Jeff Moden (4/28/2014)
ahmed_elbarbary.2010 (4/28/2014)
suppose i want to calculate payroll every month...
April 28, 2014 at 9:57 am
I usually say I'm a Database Architect, or anything that will make people think that I'm not the guy to troubleshoot problems with their PC or help them setup their...
April 25, 2014 at 7:15 pm
Because they would rather have bad data in the database than track down those annoying FK errors?
April 11, 2014 at 9:53 am
As you probably know already, this is a very complex problem, especially when you are dealing with multipart names, non-western names, etc.
You may want to invest in commercial software that...
April 11, 2014 at 9:47 am
if object_id('dbo.tablename','U') is not null begin drop table dbo.tablename end
go
create table dbo.tablename(
IDintnot null identity(1,1) primary key clustered,
SDatevarchar(10) not null
)
go
ALTER TABLE dbo.tablename ADD CONSTRAINT CHK_Date_format check
(case when SDate not...
April 2, 2014 at 3:15 pm
WayneS (3/28/2014)
Ed Wagner (3/28/2014)
WayneS (3/27/2014)
Luis Cazares (3/27/2014)
I'm afraid that this database is full of these pieces of sh...
March 28, 2014 at 1:43 pm
Luis Cazares (3/28/2014)
March 28, 2014 at 10:01 am
Probably need to hear more of the justification, but I doubt that there will be any money savings from going to DB2, even without the cost of the conversion.
March 26, 2014 at 11:27 am
RonKyle (2/14/2014)
Let the system that he is supposedly designing and maintaining tell him that he is wrong.
I've seen otherwise good people unconvinced by even this.
There aren't many people that...
February 14, 2014 at 4:58 pm
Get Server Database File Information
This script gets the file information for every database on a server, and inserts it into temp table which is then queried multiple ways to give...
February 14, 2014 at 3:45 pm
TheGreenShepherd (2/14/2014)
February 14, 2014 at 3:21 pm
Luis Cazares (2/14/2014)
Michael Valentine Jones (2/13/2014)
3. The database is "overnormalized".That can be true (even if it usually isn't).
I am not sure what "overnormalized" even means, but anytime someone said that...
February 14, 2014 at 2:58 pm
JeeTee (2/12/2014)
...
Yesterday, a senior database developer colleague of mine described the use of foreign keys as "purely academic" citing that FK's provide little benefit that can't be enforced through...
February 13, 2014 at 10:05 pm
It is not uncommon for the PLE to crash to a very low number for a while if you run a query that requires a lot of data to be...
February 13, 2014 at 12:22 am
I prefer to include the object type parameter in the OBJECT_ID function call to make sure it is actually a temp table, and not some other type of temp object.
In...
February 10, 2014 at 8:14 am
Viewing 15 posts - 91 through 105 (of 3,010 total)