Viewing 15 posts - 7,756 through 7,770 (of 13,469 total)
glad I could help a little bit; post your scalar function here if you need help converting it to an ILTV;
April 13, 2011 at 7:53 am
yes and no;
javascript in and of itself can't do it alone; it requires a postback to the server;
so you need to either use a form post (submitting the whole aspx...
April 13, 2011 at 5:53 am
Dan's right where whenever GUID's are generated with a newId() function, they are unique, but if the business process was using them for FK equivilents, you can find out easy...
April 12, 2011 at 2:52 pm
a clustered index does not have to be unique. it just stores the data in the order of the index for the fastest retrieval of the data.
you are confusing a...
April 12, 2011 at 1:16 pm
pdonley (4/12/2011)
You have to understand that in the business world, band-aids are what management wants. They don't want me to re-write their system.
management expects you to use your professional expertise...
April 12, 2011 at 9:50 am
don't you have to set both the connection timeout and your command object's command timeout?
this works fo rme for example, waitng 45 seconds to make sure it lasts longer thna...
April 12, 2011 at 8:52 am
heck i'm throwing all sorts of numbers out there; i think i made my numbers extra huge to kick up some dirt so people would say "no! that's too much"
ok...
April 12, 2011 at 8:32 am
I think you are supposed to use SUSER_SNAME() in most situations.
i believe the difference is SUSER_SNAME() would return a domain\username for those people who are not explicitly on...
April 12, 2011 at 6:52 am
duplicate post. please don't post the same question multiple times, it makes it hard to follow and fragments replies.
users click Recent Posts>>Posts Added Today to see all recent activity.
follow the...
April 12, 2011 at 5:19 am
sathishmangunuri (4/12/2011)
Hi ,I have logged into server with particular user credentials and created some table.Now I need get the details of those tables which are created by this user.
what details...
April 12, 2011 at 5:17 am
tomy1980 (4/12/2011)
I just want to take ur kind attention to one of our client's requirement which u can find below,
Machine Name = A
Default Instance Name .....They want it to...
April 12, 2011 at 1:52 am
pretty straightforward code; I'm still guessing that your table dbo.tblChangeRequestResources has multiple emails for the same person, so i'd suggest adding a DISTINCT clause to your procedure:
-- spu_CHS_SendEmail_AllResources '00003I','ENS -CR-2010-000102'
ALTER...
April 12, 2011 at 1:42 am
in your example, you are using a SCALAR function, which will degrade performance, especially with large data sets.
you could change that same function to be an inline table valued function,...
April 11, 2011 at 2:12 pm
ok, because of the complexity, what you have to do is export the results to a global temp table, then BCP the the results;
Adding this to the very end of...
April 11, 2011 at 1:07 pm
BCP supports changing the default field terminator (default is tab ) to anything else;
here's a simple example: see the delimiter in the dbl quotes after the -t command
EXECUTE master.dbo.xp_cmdshell 'bcp...
April 11, 2011 at 12:46 pm
Viewing 15 posts - 7,756 through 7,770 (of 13,469 total)