Viewing 15 posts - 8,041 through 8,055 (of 13,469 total)
additionally, both Enterprise Manager and SSMS GUIS's have the built in ability to add an extended property for ease of use: just go to teh table and select "Design",...
March 1, 2011 at 5:48 am
actually, what a lot of people do is to put the data in the database itself by using extended properties...(sys.sp_addextendedproperty / fn_listextendedproperty)
you can put descriptions up to 255 chars in...
March 1, 2011 at 5:41 am
there was a recent thread on teh same subject:
http://www.sqlservercentral.com/Forums/Topic1056364-324-1.aspx
a lot of people reported they lean towards a "don't ask don't tell" policy, so if they don't ask for your expertise...
February 28, 2011 at 3:45 pm
Rich Yarger (2/28/2011)
Could it be that this is happening because the version of SQL Server is 2005 Express?
nope...something is specifically occurring...there's got to be something that is issuing the commands...
February 28, 2011 at 3:42 pm
i made a simple csv with a bunch of the possible dateformats.
it looks like using convert with format 109 or 126 is probably best...it leaves the date and time alone...
February 28, 2011 at 2:56 pm
i'm not sure what you mean by parent object...a trigger, for example, would have the parent_object_id in sys.objects, but i don't think a specific command would have any references to...
February 28, 2011 at 2:04 pm
here's a quick example of a bunch of the formats available. sometimes you need to combine some of them togetehr to get exactly what you are after:
FormattedDate ...
February 28, 2011 at 12:25 pm
ok i saw this image on derp.membase and had to switch avatars today. not my dog, but what a pic.

February 28, 2011 at 11:13 am
a_ud (2/28/2011)
PS: can't you create 3 calculated fields F1, F2, F3 where F1 exists only when ContactType is Phone (and shows Contactinfo), and same for F2 and F3?
yes, you can;...
February 28, 2011 at 10:58 am
http://jobsearch.monsterindia.com/searchresult.html?fts=sql&loc=
yep...monsterindia.com...easy enough to find once you know you want to search fro "sql jobs india"
February 28, 2011 at 8:35 am
what about experience in programming languages?
Most of the people we hire in my shop for example are C# or vb.net developers, and we look for SQL skills in that mix.
Unfortunately,...
February 28, 2011 at 8:27 am
I think you can do what you want as a set of case statements
let me know if this model works for you:
SELECT
OtherFields,
CASE
WHEN...
February 28, 2011 at 6:42 am
I agree With Dave B; bcp, or BULK INSERT, or openquery would all be blazingly fast in comparison;
I've used bulk insert to load files with a million rows in under...
February 28, 2011 at 5:34 am
for the executable and services, you don't have a choice...it must be installed on the same drive as the operating system.
after the install, you can move most of the...
February 26, 2011 at 8:45 pm
Also because mine is purtier!
one of the main reasons i did this was formatting, and removing/pruning items that are optional in a table script, so the don't need to...
February 25, 2011 at 11:15 am
Viewing 15 posts - 8,041 through 8,055 (of 13,469 total)