Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
4k views

How I can move table to another filegroup?

I have SQL Server 2008 Ent and OLTP database with two big tables. How I can move this tables to another filegroup without service interrupting? Now, about 100-130 records inserted and 30-50 records ...
4
votes
4answers
7k views

“Primary Filegroup is Full” in SQL Server 2008 Standard for no apparent reason

Our database is currently at 64 Gb and one of our apps started to fail with the following error: System.Data.SqlClient.SqlException: Could not allocate space for object ...
3
votes
2answers
10k views

How do i move a table to a particular FileGroup in MS Sql 2008

i've just created a secondary filegroup and wish to move some tables over to it and then make it read-only. I'm not sure how to do this? do i just use the ALTER blah blah TO MyFileGroup ?
3
votes
2answers
188 views

Separating an SQL Server database

I'm using SQL Server 2008. My database is almost 2GB in size. 90% of it is one table (as per sp_spaceused), that I need don't for most of my work. I was wondering if it was possible to take this ...
2
votes
2answers
1k views

SQL Server file and filegroup

I can not think of any reasons why we need to have multiple files inside a file group. The reason why I think of this way is we can control from T-SQL (end user) level about file group, but can not ...
1
vote
0answers
38 views

Xcode 4 group file and filesystem sync

Is there any easy way to sync the group structure inside Xcode 4 and the actual folders structure in the filesystem? I have read that some people create new folders on Finder and them drag-and-drop ...
1
vote
1answer
257 views

SQL Server: changing the filegroup of an index (which is also a PK)

We're doing a cleanup on a group of databases, and the first step is to get all indexes in the database into the correct filegroups. Currently, those indexes are mixed between the DATA filegroup and ...
1
vote
2answers
783 views

Can I split a single SQL 2008 DB Table into multiple filegroups, based on a discriminator column?

I've got a SQL Server 2008 R2 database which has a number of tables. Two of these tables contains a lot of large data .. mainly because one of them is VARBINARY(MAX) and the sister table is ...
1
vote
1answer
87 views

Would a filegroup with many files located on the same drive outperform if it had just one file on SQL Server 2008 R2?

I've a couple of questions regarding filegroups and their files (.ndf). A filegroup with many files is faster than a filegroup with just one file? (All files are located on the same drive, i.e., ...
1
vote
3answers
2k views

Why do we need secondary data files in SQL Server?

I always ignore this option when creating a new database on SQL Server 2005, simply because we can ignore something that we do not understand and leave it as it is. (I'm not so into DBA) so now I am ...
1
vote
2answers
478 views

Storing images in a Sql Server 2008 database using Filegroups/Filestreams

Has anyone had an experience storing user uploaded images in a MSSQL 2008 Database using Filegroups and Filestreams? I read a few articles that seemed to say they are a good idea because you get all ...
0
votes
0answers
32 views

Using FILEGROUP and SCHEMA in SQL 2008 R2 to simulate multiple databases

We are porting a fat client application to the web. Currently each of our customers (companies) have their own installation with a specific database. Each company may have multiple users. In order ...
0
votes
2answers
54 views

How to create indexs on a different file of Filegroup

i'm using sqlserver 2008 R2 is there any way to specify that a table index is created on a sencondary file from a filegroup? example: "Primay" Filegroup has 2 files: Catalog.mdf and Indexes.ndf ...
0
votes
1answer
642 views

Insufficient disk space in filegroup 'PRIMARY' - SQL Server 2008

Am getting following error: Msg 1101, Level 17, State 12, Line 1 Could not allocate a new page for database 'CTL' because of insufficient disk space in filegroup 'PRIMARY'. Create the ...
0
votes
3answers
1k views

Moving all non-clustered indexes to another filegroup in SQL Server

In SQL Server 2008, I want to move ALL non-clustered indexes in a DB to a secondary filegroup. What's the easiest way to do this?
0
votes
1answer
341 views

SQL Server 2005: Partial Filegroup restore on QA database

Okay, I am pretty sure at this point that this cannot be done, but here goes: I have a production SQL Server 2005 database with two filegroups, PRIMARY and SECONDARY. PRIMARY consists of about 2 gigs ...
0
votes
1answer
437 views

Automated Filegroup Migration in SQL Server

Recently I've been trying to restructure an old database that was not designed with filegroups (just the default PRIMARY) and, among other things, move a bunch of tables to a new Data filegroup ...
0
votes
3answers
560 views

SQL Server filegroup full during a large INSERT INTO statement

Consider a SQL script designed to copy rows from one table to another in a SQL 2000 database. The transfer involves 750,000 rows in a simple: INSERT INTO TableB([ColA],[ColB]....[ColG]) SELECT ...
0
votes
1answer
212 views

Piecemeal restore of database with filstream filegroups

I have tried taking the backup of database containing filestream and it works fine. I have tried restoring it on other server also and that works too. Now, i am facing a problem. Our database is big ...
0
votes
1answer
288 views

file system not supported error while adding a file to sql filegroup with filestream

hi i am a beginner with sql server 2008, i was trying to add a file to a filegroup so that i an create a table which uses filestream, but i keep getting an errors. here is the code that i am trying: ...
0
votes
3answers
233 views

Should static database data be in its own Filegroup?

I'm creating a new DB and have a bunch of static data that won't change. If it does, it will be a manual process AND it will happen very rarely. This data is a mix of varchars and Geographies. I'm ...
0
votes
2answers
765 views

Specify default filegroup for indices?

This is puzzling me - in SQL Server 2005/2008, I can specify the default file group which is then used for all data tables. I can also specify another filegroup for all BLOB type fields. But I cannot ...