Viewing 15 posts - 46 through 60 (of 60 total)
blahknow (3/26/2008)
Hi afalso,and thanks.
I didnt understand how to create a temp table without sending the sp thet is creating it a list of names to populate that table.
Thanks
(dfalso, btw)
No...
March 26, 2008 at 11:39 am
Another way you can go is making a temp table (#) and use that in the stored proc. As long as you create it in the outer session that's calling...
March 26, 2008 at 9:38 am
Trader Sam (3/17/2008)
dfalso (3/17/2008)
I tried this on a SQL 2005 box here and my third resultset is empty.I get 5 records, 5 records, 0 records, 3 records, and 13 records.
I...
March 17, 2008 at 8:46 am
I tried this on a SQL 2005 box here and my third resultset is empty.
I get 5 records, 5 records, 0 records, 3 records, and 13 records.
March 17, 2008 at 8:38 am
As noted above, you should definitely put brackets (QUOTENAME()) around your column names in the column list generation.
March 14, 2008 at 2:22 pm
If I had this issue, the first avenue I would explore is whether I could order the partcodes in the order I thought was correct. If so, your best bet...
March 14, 2008 at 1:17 pm
xpscodes (3/10/2008)
One of the issues I saw above...
March 10, 2008 at 3:34 pm
Sorry, I should have been more clear. The poster needs to be very, very sure that none of his dates are in day/month/year format, which you see used in Europe...
March 10, 2008 at 3:14 pm
With the gigantic caveat that your slashed data is always stored month/day/year.
March 10, 2008 at 2:54 pm
What is your table structure? I didn't see this explicitly...may make a difference.
March 10, 2008 at 2:50 pm
Note that I wrote this still using your PK values as the series identifier, but if the timestamp values is better (see my previous comment), you should change the code...
March 10, 2008 at 2:10 pm
Not to trash on your code, xpscodes, but I don't think it works completely like the original poster wants (or ultimately needs, if I understand the goals correctly). But I...
March 10, 2008 at 1:59 pm
I'm not sure why you're trying to create a temp table in an exec statement, but I have some ideas because I used to do it myself. So I have...
March 10, 2008 at 8:04 am
Chris Schanno (3/6/2008)
Yes, I would consider using a cursor over the set based approach depending on the circumstances such as the size of the dataset and use for which I...
March 6, 2008 at 1:49 pm
eddy (3/3/2008)
Can i include (or create) views based on functions .??
I already noticed that the possibility of including stored procedures is not possible...
Chriss, tnx for the tip on the...
March 5, 2008 at 10:31 am
Viewing 15 posts - 46 through 60 (of 60 total)