Viewing 15 posts - 151 through 165 (of 1,186 total)
We are going through SOX as well. Have already implemented a lot of "SOX" items. SOX for our company includes but is not limited to:
SOX, HIPAA, Segregation of duties, Plain...
August 19, 2005 at 12:59 pm
Have you looked at the WHERE you call this from to ensure that this is not in a loop??? I don't see anything wrong with the SP.
August 19, 2005 at 11:34 am
I have found (personal experience) that when you declare a variable as VARCHAR() without telling it HOW LONG then it will DEFAULT to VARCHAR(1).
Try telling the system how long you want the...
August 18, 2005 at 5:37 am
As your query is currently written you will get a "random" customer every time you do the following:
1. Give me approx 1 million customers
2. Ok now rerun #1 and give...
August 17, 2005 at 4:14 pm
Ok, I'll bite. You are 1st looking at approx 1 million records and grouping them. Next you are saying out of that I only want where rownum is less than...
August 17, 2005 at 5:26 am
Sounds like IF you leave the ON DELETE CASCADE you will wind up in a viscious endless loop. I would look and see if there are triggers that are already...
August 16, 2005 at 12:38 pm
Probably the easiest way is to create a job and have it scheduled daily to either A. run a stored procedure with the code or B. run a DTS package...
August 15, 2005 at 6:06 am
I guess I need to ask the question... IF you understand that the ID may skip numbers for various reasons "What is the burning desire to NOT skip numbers"?
August 15, 2005 at 6:05 am
You cant do that HOWEVER you can use a user defined function like that. See BOL for more information
August 12, 2005 at 10:30 am
If you are already building dynamic SQL why not add
+ CHAR(34) + around credited ? May take some work but this should help...
August 12, 2005 at 5:15 am
I would start by contacting RedGate http://www.red-gate.com and see if any of there VERY inexpensive pieces of software can help you. They are very friendly and helpful as well.
August 11, 2005 at 2:08 pm
Read up in BOL about DTSRunUI. This will talk about the different parameters that you can configure for this...
August 11, 2005 at 2:05 pm
Prior to shoveling the poop up and throwing it away...
I would have your customer look at task manager and see if anything has run away and/or there are a lot...
August 11, 2005 at 2:02 pm
Steve,
You are absolutely correct, there are multiple different types of DB-types out there. Some of the types you listed could be considered flat-files as well. I was just trying...
August 10, 2005 at 3:34 pm
I didn't think you could have a RETURN in anything other than a stored-procedure??
August 9, 2005 at 12:01 pm
Viewing 15 posts - 151 through 165 (of 1,186 total)