Viewing 15 posts - 1,336 through 1,350 (of 3,011 total)
It will be in all files are that are part of the filegroup (or filegroups) it is in.
Edit:
Just to clarify, a table can be in multiple filegroups by having indexes...
July 6, 2010 at 10:50 am
You could also just convert the datetime to the first day of the month at time 00:00:00.000 and group by that:
group by dateadd(mm,datediff(mm,0,MyDate),0)
July 2, 2010 at 2:23 pm
I would start by having development managers who have a high enough level of competence to be able evaluate the talent of the people they hire.
However the way the world...
July 1, 2010 at 10:10 pm
The only time I have seen this problem was in trying to delete a maintenance plan that was created before a server was renamed.
July 1, 2010 at 2:32 pm
You could just drop the primary key and add a new one. The disadvantage is that it will happen in a single transaction and the transaction log will get...
June 30, 2010 at 3:51 pm
What is the physical size of the table? Do you have enough free space in the database to create another copy of this table?
This script will tell you the...
June 30, 2010 at 3:20 pm
Access to SQL Server is via connection to the SQL Server service, not a network share.
When the machine that hosts the service is down or unreachable, then there is no...
June 30, 2010 at 1:48 pm
Lynn Pettis (6/29/2010)
June 30, 2010 at 7:59 am
Dan.Humphries (6/29/2010)
...I have never gotten the snarky type of responce that is so normally typical on other IT boards...
It's not all love and kisses around here; Check out the Bankers...
June 29, 2010 at 8:31 pm
Agile (6/28/2010)
June 29, 2010 at 8:07 pm
I was saying that it is not logged because it is not a database object in tempdb, not because it is not stored in tempdb. The following code shows...
June 29, 2010 at 4:20 pm
Better come up with a different plan.
I've never heard of such a tool, and I really, really, really doubt it exists.
June 29, 2010 at 3:41 pm
Table variables are not actually database objects, even in tempdb.
# or ## tables are actual tempdb objects, so they are logged.
June 29, 2010 at 3:26 pm
For moving databases from one server to another, the safe method is to use SQL backup and restore.
Doing the move using disk level copies is probably not a good idea,...
June 29, 2010 at 2:41 pm
Viewing 15 posts - 1,336 through 1,350 (of 3,011 total)