Viewing 15 posts - 5,701 through 5,715 (of 6,022 total)
Perhaps the best option is to keep the data online and in the database, but on a seperate read-only filegroups located on cheap drives. Those filegroups don't even need to...
February 22, 2011 at 8:35 am
If your tables and relationships are normalized, you don't use cursors, you leverage views and functions appropriately to reduce duplication without compromising performance, use standard naming conventions, and handle transactions...
February 22, 2011 at 8:15 am
There actually are methods to capture object access events for the purpose of maintaining usage data. We could do it with a SQL Profiler trace, filter on the appropriate events,...
February 22, 2011 at 7:49 am
Practically all database related breaches can be prevented by setting up user accounts with least privilege. Create a role that grants exec permission to only those stored procedures that the...
February 21, 2011 at 10:44 am
The problem with metrics is that most company's simply don't have an official standard. Ask ten different managers (in the same department) to examine a piece of code, and you'll...
February 21, 2011 at 8:09 am
For years I've been drinking about two cups of coffee a day with no concerns, but not because some guest on a morning TV news show suggested it's good for...
February 18, 2011 at 7:05 am
mannaggia (2/15/2011)
I just do this:
ALTER DATABASE dbname
SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO
ALTER DATABASE dbname
SET MULTI_USER
GO
Any advantage or disadvantage over the script?
I guess it depends on the conext of the situation, but...
February 16, 2011 at 8:36 am
What I like are the realestate websites where you can see actual floor plans or recorded video allowing a virtual tour. A picture is worth a 1,000 data items.
February 15, 2011 at 10:47 am
The problem is that 3rd party websites that aggregate listings from multiple sources can't be too choosy about their data, because they have no control over the data entry etiquette...
February 15, 2011 at 8:57 am
Regarding different types of database automation, I like referential integrity and check constaints, because it automatically rejects bad data at the point of insertion. Otherwise, the developer or DBA has...
February 14, 2011 at 7:36 am
Participating in forums like SSC is for database professionals what weightlifting and practice drills are for professional fire fighters. If you're fighting fires every day, then something is seriously wrong,...
February 11, 2011 at 10:55 am
Aaron N. Cutshall (2/10/2011)
James Stover (2/10/2011)
If you lie and get away with it then maybe you should consider a career in sales 🙂Or politics! 😛
Or a technical recruiter.
:rolleyes:
February 10, 2011 at 3:04 pm
lcasamen (2/8/2011)
February 9, 2011 at 7:34 am
Regarding job descriptions with too many technical requirements and resumes full of bogus experience, in many cases it's the result of a 3rd party recruiter acting as an intermediary and...
February 8, 2011 at 1:30 pm
The forthcoming version of SQL Server, codenamed "Denali" will have a sequence type object that functions similar to Oracle's sequence. However, just like an identity, it can also result in...
February 8, 2011 at 9:38 am
Viewing 15 posts - 5,701 through 5,715 (of 6,022 total)