Viewing 15 posts - 16 through 30 (of 244 total)
nah. when i build a trace to say return everything w reads over 1000 i was hoping the trace had an export script to sql and maybe it would show...
August 21, 2012 at 10:51 am
thats the thing. The proc only does it sometimes. i dont know why. i assume it has something to do w the indexes being rebuild however havent proven that.
Right...
August 21, 2012 at 10:49 am
So just to clarify this post deal w/ the number of sql calls relative to the number of cache hits. Meaning what's the percent of times a cached execution plan...
August 6, 2012 at 2:56 pm
very cool thanks guys. I'm going to integrate into this process a way to backup the trans logs if it goes above 50% free space.
June 8, 2012 at 12:24 pm
is there a way to temporarily turn off the writting to trans log for this process?
June 8, 2012 at 8:07 am
if i were to take the schema route the uses would automatically have the proper rights to those newely created tables correct? Assumeing i set up the users permission to...
March 30, 2011 at 1:27 pm
Alright, so it turns out the webUser was already tied to a webUser role. Are you guys saying if i ensure the webUser role has access to these new tables...
March 30, 2011 at 1:04 pm
Very well. Then. Thanks guys. I'm going to tool around w/ urr suggestions and get back to u.
thanks
March 30, 2011 at 12:26 pm
sorry. i do agree w the indexing just not the loop haters out there
January 14, 2011 at 1:15 pm
As my name suggests i dont totally agree. It depends where you work at and who or what team will be supporting it. On occasion these guys tend to provide...
January 14, 2011 at 1:12 pm
Another option is to use the split function and load each column name as a record in a table. U would need to first create the split function. Code at...
January 14, 2011 at 8:42 am
I don’t really need help parsing the data. I was just purposing a question. Why is there no substring function that has a starting position and ending position as parameters....
January 11, 2011 at 1:57 pm
--sorry. i forgot an "and" in there
--somehting like this
SELECT DISTINCT
c.ContactID,
c.ContactName,
c.PhoneNum,
c.Fax,
c.PersonalEmailAddress,
c.CompanyPhoneNum,
c.GroupEmailAddress,
c.Address1,
c.Address2,
c.Address3,
c.Address4,
c.City,
c.State,
c.Zip,
c.CountryCode
FROM
tblDCF_SubAccounts s,
tblDCF_Contacts_Accounts a,...
January 10, 2011 at 2:08 pm
actually now that i think about it. i would still have the redundant code in the to calculate the end position. I wouldn't have to do subtraction to get the...
January 10, 2011 at 1:40 pm
--somehting like this
SELECT DISTINCT
c.ContactID,
c.ContactName,
c.PhoneNum,
c.Fax,
c.PersonalEmailAddress,
c.CompanyPhoneNum,
c.GroupEmailAddress,
c.Address1,
c.Address2,
c.Address3,
c.Address4,
c.City,
c.State,
c.Zip,
c.CountryCode
FROM
tblDCF_SubAccounts s,
tblDCF_Contacts_Accounts a,
tblDCF_Contacts c
WHERE
a.ContactID = c.ContactID AND
a.ContactType...
January 10, 2011 at 1:33 pm
Viewing 15 posts - 16 through 30 (of 244 total)