Viewing 14 posts - 16 through 29 (of 29 total)
The reason I would want the results from the second procedure to go into a cursor from the first procedure, because the second procedure results are more than 1. It...
October 14, 2010 at 10:23 am
Would I be able to add my results from the second stored procedure into a cursor in the first procedure?
Thanks
October 14, 2010 at 8:06 am
Thanks for your advice.
I tried that SQL on a view and i recieved the error below:
"Cannot create index on view '[ViewName]' because the view is not schema bound"
July 22, 2010 at 2:45 pm
My apologies for not being clear.
Can I extract the Months from the datepart on the pivot table and insert the month as a seperate field in a table?
January varchar(35)
February varchar(35)
March...
March 26, 2010 at 9:27 am
Sweet this looks good. This is the code that I used:
select * from
(select DATEPART(M,DATETRANS) AS ORDERMONTH, DELTA,staffkey
FROM BIL_ARTRANSLOG
WHERE DATETRANS BETWEEN '1/1/2009' AND '10/1/2009'AND TRANSTYPELU= 3) SRC
PIVOT (SUM(DELTA) FOR...
March 25, 2010 at 11:35 am
What if I just deleted these full index catalogs? I dont think i need them right now? Would I loose any data?
September 23, 2009 at 2:37 pm
Did you migrate your db by using a backup or did you detach your db?
Thanks for your help.
September 23, 2009 at 10:26 am
Did you migrate your db by using a backup or did you detach your db?
Thanks for your help.
September 23, 2009 at 10:26 am
I did uninstall the SQL Native Client, but when I try to re-install the software I keep getting that error. It's really weird. I think the Software is trying to...
June 2, 2009 at 12:54 pm
select count(*)
from table_name
Thats a simple way of getting an total amount of rows in your table. If you select count(columnname)
you might not get back accurate results since their might be...
April 2, 2009 at 12:27 pm
That actually moved over all of the rows, but the field Staffkey was null in the tables that I inserted from the source table. Is there another parameter that I...
April 2, 2009 at 12:17 pm
Does this Database Mail work in conjunction with Microsoft Outlook Exchange?
April 2, 2009 at 12:00 pm
Thanks for the feedback. I am a rookie and still in the process of learning how to create store procedures.
This stored procedure is executed in the front end of the...
April 2, 2009 at 7:24 am
Viewing 14 posts - 16 through 29 (of 29 total)