News Networks
Topics
Stories
People

  • My Networks
  • Popular
  • Recent
  • ABC...XYZ
  • Create New
  • Search
  • Popular
  • Recent
  • Rising Fast
  • ABC...XYZ
  • Popular Today
  • Popular Week
  • Popular Month
  • Rising Fast
  • Hot Discussions
  • My Newsmakers
  • My Followers
  • Recently Active
  • Popular
  • Find
  • Invite Friends
Connect
Sign in using facebook |
Log in |
Sign Up


Hi there. I'm Jason, one of the founders of socialmedian.
socialmedian delivers the news, filtered by your network.
We'd love to have you join in.
You can use facebook connect to sign in.
Connect
OR
Log in 
|
Sign up


Create your socialmedian account
Email
Required

Password
Required

The password must be atleast 6 characters
Username
Required

http://www.socialmedian.com/username
This is same as my twitter ID
Security check

I agree to the terms and conditions and the privacy policy.
Loading...


Already a user? Please Log In
Invalid Login!
Email

Password

Remember me:
Loading...


Forgot Password?

Email:

Welcome to the SQL Server News Network
This News Network is designed to help people track and share news about SQL Server.


SQL Server
Save Cancel


Popular
|
Recent

Previous

Next


0
Clips
To BUILTINAdmin or not to BUILTINAdmin
2 days ago

Data Management: A while back I wrote, “To SA or not to SA”. That blog touched my security side that I take very seriously in my database server landscape. I’m glad to have seen so many read the blog in hopes it brought attention to the SA account where it may have been overlooked. In a reply to one of the comments I touched on another d (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Collation conflicts with temp tables and table variables.
2 days ago

Data Management: When the collation of your user database does not match the collation of TempDB, you have a potential problem. Temp tables and table variables are created in TempDB. When you do not specify the collation for string columns in your table variables and temp tables, they will inherit the default collation for TempDB. Whenev (Read More)
Topics: database, SQL Server
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
SQL Server collation conflicts
3 days ago

Data Management: Collations control how strings are sorted and compared. Sorting is not usually a problem because it does not cause collation conflicts. It may not sort the way you want it to, but it won't cause errors. The real problem here is when you compare data. Comparisons can occur several different ways. This can be a simple co (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Don't use text datatype for SQL 2005 and up
4 days ago

Data Management: With SQL Server versions prior to SQL2005, the only way to store large amounts of data was to use the text, ntext, or image data types. SQL2005 introduced new data types that replace these data type, while also allowing all of the useful string handling functions to work. Changing the data types to the new SQL2005+ equiva (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Undetectable Distributed Deadlocks
Nov 14, 2009

Data Management: I believe I have discovered a deadlock situation that SQL Server is not able to detect, so a perpetual block occurs.A deadlock is nothing more than mutual blocking. Blocking is when a process is forced to wait for a resource while another process exclusively accesses it (where the exclusivity is managed through locks). Mutu (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Beginning stages of a DR plan for SQL Server
Nov 13, 2009

Data Management: I’ve found that many companies find out what true Disaster Recovery is only in the presence of a true disaster. Obviously this is not a very optimal time to start thinking about what could have done to keep the money flowing through the veins of the company. In the near future I will be writing a series based around DR. (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Identify procedures that call SQL Server undocumented procedures
Nov 13, 2009

Data Management: When you use an undocumented stored procedure, you run the risk of not being able to upgrade your database to a new version. What's worse... you could have broken functionality and not even know it. With undocumented stored procedures, Microsoft may not document when they decide to deprecate it, so you may not know about (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Back to business for the SQL Server community
Nov 13, 2009

Data Management: The countdown to PASS has officially reset. Good news is we have under 365 days to go until the next PASS. Bad news is we have just under 365 days to go. It’s been great watching the tweets and laughs going back and forth from new friendships made there this year. Although I didn’t have the chance to make it to PASS thi (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Best Practice: Coding SQL Server triggers for multi-row operations
Nov 12, 2009

Data Management: Best Practice: coding SQL Server triggers for multi-row operationsThere are many forum posts where people code triggers but these triggers are coded incorrectly because they don't account for multi-row operations. A trigger fires per batch not per row, if you are lucky you will get an error...if you are not lucky you will n (Read More)
Topics: SQL Server
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Best Practice: Do not cluster on UniqueIdentifier when you use NewId
Nov 12, 2009

Data Management: There can only be one clustered index per table because SQL Server stores the data in the table in the order of the clustered index . When you use a UniqueIdentifier as the first column in a clustered index, every time you insert a row in the table, it is almost guaranteed to be inserted in to the middle of the table. SQL (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
SSRS 2005 Matrixes
Nov 11, 2009

Data Management: I am writing this blog as an introduction to matrixes. In SQL Server 2005, Reporting Services has two main controls, tables and matrixes. Tables, however useful, only expand vertically. Matrixes, however, expand both horizontally and vertically, giving you a different view of data. A good set of data to view in a matrix (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Best Practice: Every table should have a primary key
Nov 11, 2009

Data Management: By definition, primary keys must contain unique data. They are implemented in the database through the use of a unique index. If there is not already a clustered index on the table, then the primary key's index will be clustered. It's not always true, but most of the time, you want your primary keys to be clustered becau (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Do not use spaces or other invalid characters in your column names
Nov 10, 2009

Data Management: Column names (and table names) should not have spaces or any other invalid characters in them. This is considered bad practice because it requires you to use square brackets around your names. Square brackets make the code harder to read and understand. The query (presented below) will also highlight columns and tables w (Read More)
Topics: database, SQL Server
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
SQL Server 2008 R2 November CTP Available For Download
Nov 09, 2009

Data Management: Last week I wrote that SQL Server 2008 R2 Editions pricing has been announced, Microsoft today made availabe for download the SQL Server 2008 R2 November CTP. SQL Server 2008 R2 November CTP is available today for MSDN and TechNet subscribers and it will be available to the general public on November 11thGo to http://www.mi (Read More)
Topics: SQL Server, database, tech
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

0
Clips
Always include size when using varchar, nvarchar, char and nchar
Nov 06, 2009

Data Management: There are several string data types in SQL Server. There are varchar, nvarchar, char, and nchar. Most front end languages do not require you to identify the length of string variables, and SQL Server is no exception. When you do not specify the length of your string objects in SQL Server, it applies its own defaults. Fo (Read More)
Topics: SQL Server, database
Add Comment
Share
News Flash
Dislike
 
0%
 
0%

Like
Mood




Loading

Previous

Next


Please enter your Email Id to get a new password
Forgot your password?
Email:

Add something

Snip
News
Site

Instantly Clip News From Any Website
Clip it! on s|m
Or, Enter News Directly Here
Headline:

URL:
(Optional)

Description:
(Optional)

Adding a News...


Add Snip
Adding a Snip...


Now you can import your favorite sites to your socialmedian page
Loading...

Loading...


Is this you?
invite your friends to the "SQL Server" News Network

gmail   hotmail   twitter  
Invite
Info and Settings


Created by: Denis Gobo 
Created on: Jul 31, 2008
Noise Level

Low
Medium
High

Change Volume

Low only searches for the primary topic.

Medium searches for relevant combinations of topics.

High will search for any single term, primary or related.

Not sure what to do? Set to medium. You always adjust later.


News Network Members (6)

Loading...

Denis Gobo
Anumonwo
Ben Moorhouse
Rhowarth
Rmpbklyn
Kagnie

Topics

Use the arrows to adjust the relevance rankings.
SQL Server
(primary topic)

(Score: 100 Total Vote: 1)
Information Storage and Retrieval
delete

(Score: 110 Total Vote: 1)
tech
delete

(Score: 100 Total Vote: 1)
database
delete

(Score: 100 Total Vote: 1)
Information Technology
delete

(Score: 100 Total Vote: 1)
Database Integrity
delete

(Score: 100 Total Vote: 1)
This keyword is marked as a location. Only stories that contain this keyword will be included in your news lists.
Please wait while we fetch the relevant stories. This may take a few minutes.
Sources

Use the arrows to adjust relevance rankings.
Relevant news submitted by members of this News Network

(Score: 110 Total Vote: 1)
Data Management
delete
(Score: 110 Total Vote: 1)
Added by: Denis Gobo on Jul 31, 2008
SQL Server Code,Tips and Tricks, Performance Tuning
delete
(Score: 110 Total Vote: 1)
Added by: Denis Gobo on Jul 31, 2008
Denis Gobo
delete
(Score: 100 Total Vote: 1)
Added by: Denis Gobo on Jul 31, 2008

We constantly make updates and enhancements based on user feedback. Follow socialmedian on Twitter
Help us out and report a bug or suggest a new feature! Check out our blog for regular company updates, notables, and to see what we're currently working on.
Report a Bug
Suggest a Feature


 Sending...
close
socialmedian Inc. 2008 - 2009
About socialmedian    |        |    Terms of Service    |    Privacy Policy