Forum Replies Created

Viewing 14 posts - 16 through 29 (of 29 total)

  • RE: Calling a Stored Procedure inside a stored procedure

    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...

  • RE: Calling a Stored Procedure inside a stored procedure

    Would I be able to add my results from the second stored procedure into a cursor in the first procedure?

    Thanks

  • RE: Indexes on Views

    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"

  • RE: Pivot Querrie using Dates

    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...

  • RE: Pivot Querrie using Dates

    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...

  • RE: Backup Failures

    What if I just deleted these full index catalogs? I dont think i need them right now? Would I loose any data?

  • RE: Backup Failures

    Did you migrate your db by using a backup or did you detach your db?

    Thanks for your help.

  • RE: Backup Failures

    Did you migrate your db by using a backup or did you detach your db?

    Thanks for your help.

  • RE: Backup Failures

    Yes we just upgraded from 2000 to 2005.

  • RE: Installing SQL Server 2005 Enterprise Edition on Windows Server 2003 SP2

    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...

  • RE: Select count(*) from....

    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...

  • RE: Looping a stored procedure

    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...

  • RE: SQL Server 2005 Job email notification alerts

    Does this Database Mail work in conjunction with Microsoft Outlook Exchange?

  • RE: Looping a stored procedure

    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...

Viewing 14 posts - 16 through 29 (of 29 total)