Viewing 8 posts - 1 through 8 (of 8 total)
Question is tricky. At a glance, it seems to have syntax error as there in no GROUP BY clause.
But, if we ignore it then 🙂
August 12, 2010 at 2:01 am
Thanks Manu.
Yes, the PRIMARY filegroup will be restored before restoring the target filegroup. But it marks the other filegroups offline.
So, how to take these filegroups back online?
May 7, 2010 at 1:22 am
I have tried partial restore but it is making other filegroups offline.
May 6, 2010 at 5:43 am
You can use sys.sysaltfiles view, it would give all the required fields. But instead of giving filegroup name it would give groupid.
May 6, 2010 at 4:58 am
Another way...you can run system procedure xp_helpdb to get all the db sizes in an instance.
March 24, 2010 at 12:39 am
Before doing anything please modify your select query to
SELECT fielda,fieldb,fieldc ...
FROM TableB b
JOIN TableC c
ON b.fieldb = c.fieldx
AND fielda <>0
Using IN clause in SELECT would causing a full...
March 23, 2010 at 5:21 am
I have little doubt on the second option 'When the session that created it ends'.
If the global table is referenced by some other session at that time (like the...
December 17, 2009 at 12:32 am
Viewing 8 posts - 1 through 8 (of 8 total)