Viewing 15 posts - 4,861 through 4,875 (of 14,953 total)
You're welcome.
I have a couple of traces I add to every production server I administer, and a couple I add to every dev/test/QA server. I find them very, very...
February 23, 2011 at 8:59 am
Brandie Tarvin (2/23/2011)
WayneS (2/23/2011)
Brandie Tarvin (2/23/2011)
LutzM (2/22/2011)
Jeff Moden (2/21/2011)
I dun no... DE-troit boy goin ta ohia mur dan wonce in da sames yer mite git da kin folk...
February 23, 2011 at 8:57 am
Including the schema on those can improve performance, since it doesn't have to include a compile-lock to check security at runtime (allows for better concurency), but I don't think including...
February 23, 2011 at 8:55 am
You can get that from the system views and DMVs in tempdb.
For example, select from tempdb.sys.columns to get column and datatype data about temp tables.
select *
from tempdb.sys.columns
where object_id = object_id(N'tempdb..#MyTempTable');
That'll...
February 23, 2011 at 8:48 am
Running a trace does have an impact on the server, but it's microscopic. You'd have to run dozens or even hundreds of server-side traces before you're likely to even...
February 23, 2011 at 8:46 am
Are those values stored in the database? Are they in one table or multiple tables? Are they stored as strings (varchar/nvarchar/char/nchar datatypes)? Are you building the string...
February 23, 2011 at 7:22 am
You're welcome.
February 23, 2011 at 6:28 am
Ian Massi (2/23/2011)
February 23, 2011 at 6:07 am
Can you explicitly add @@servername to the query and use that?
February 23, 2011 at 6:05 am
Double the single-quote right after xp_cmdshell, right before COPY.
February 22, 2011 at 2:40 pm
GilaMonster (2/22/2011)
GSquared (2/22/2011)
Not sure what you mean by "protecting with CLR", unless you mean "hiding it in a DLL and hoping nobody gets the dev files".
Protecting as in...
February 22, 2011 at 2:38 pm
I'm guessing that when the primary attorney value equals the fee attorney value, then that's the one you want to display the number on, if it exists. Correct?
If so,...
February 22, 2011 at 2:33 pm
Depending on the application you are using to access the data, it won't generate the ID value until you actually submit the data to the database.
Generally, that means clicking on...
February 22, 2011 at 1:11 pm
Steve Jones - SSC Editor (2/22/2011)
February 22, 2011 at 1:07 pm
Viewing 15 posts - 4,861 through 4,875 (of 14,953 total)