Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Sql Query with mvc5

    IF OBJECT_ID('tempdb..#Results',N'U') IS NOT NULL

    DROP TABLE #Results

    SELECT st.Name, st.FatherName, st.RollNo, at.AttendanceDate , atst.Status

    INTO #Results

    FROM Students st

    inner JOIN SectaionJunction sec

    ON sec.ID = st.ClassSectionJunctionID

    inner join Attendance at on at.ClassSectionJunctionId=sec.ID

    inner join [dbo].[AttendaceStatus] atst

    on...

  • RE: SQL 2012 Database Owner

    Thanks A lot every one

    I have found the solution

  • RE: SQL 2012 Database Owner

    sqlcmd is shutting down after about 10 sec and not allowing me to write command

  • RE: SQL 2012 Database Owner

    have to put ownerchanged query over sqlcmd?

Viewing 4 posts - 1 through 4 (of 4 total)