Viewing 15 posts - 1,066 through 1,080 (of 1,085 total)
If you will look at my script, I have identified all records from a field in a table that have character 128 and above. I did not know what you...
November 1, 2004 at 12:30 pm
I included a $ column since you sounded as if you wanted the top 10 customers, I assumed you meant in purchasing... You could simply insert these into a #TempTable...
November 1, 2004 at 11:59 am
If you do not want to use the Enterprise Manager, you can try with Access. But I had a client that used MSDE for field operations and I really prefered...
November 1, 2004 at 11:10 am
oops... should have been IF @TempValue > 128
Sorry...
November 1, 2004 at 8:55 am
I used to need to strip Alpha-numerics from a certain field. I have changed it to try and fit your needs. Hope it works...
SET NOCOUNT ON
DECLARE @CurrentID int,...
November 1, 2004 at 8:54 am
If I am understanding this correctly, basically want the Client Number, name, etc., and the various money's (sales and commission amounts) printed out.
Then you want to add the various...
November 1, 2004 at 8:06 am
Thanks. I have some time on this one and these suggestions will really help me plan out my approach - I imagine I will find a number of sprocs with...
October 29, 2004 at 12:54 pm
A good while ago, we had a middle ware that would goof with the server. Might that be an issue?
October 29, 2004 at 12:27 pm
Thank you Steve.
Sort of... Basically, the variables are populated outside the stored procedure (seven possible strings are put into the @Variables). Because this system has changed over time, they...
October 29, 2004 at 7:34 am
Thanks - I kinda wish I could delete my posting so I do not waste people's time when I figure out an approach.
Your URL is in German. Do you know...
October 28, 2004 at 1:00 pm
Do you always want the "last" entry into the Customer Info table for that CustID? (any dates or other data in the Customer Info table you could use?)
October 28, 2004 at 9:50 am
I asked about the blocking in another forum earlier today and was told that was a 6.5 version problem and has since been fixed.
Another issue to consider is the...
October 26, 2004 at 3:36 pm
I am shooting in the breeze here, but it looks like you are using Views and not actual tables. Dynamic SQL cannot generate a plan in the SQL Server, that...
October 26, 2004 at 3:29 pm
Sometimes it helps to be more explicit. Try the following:
SELECT @zipcodeEXIST = (SELECT zipcode FROM invalidziplist WHERE zipcode = @zipcode)
SELECT @weekInfo = (SELECT week FROM invalidziplist WHERE zipcode = @zipcode)
You can also try:...
October 26, 2004 at 2:44 pm
If you can, name your Transaction.
BEGIN TRANSACTION InsertTableName
October 26, 2004 at 2:22 pm
Viewing 15 posts - 1,066 through 1,080 (of 1,085 total)