Viewing 15 posts - 6,226 through 6,240 (of 6,400 total)
have you run through the reporting services configuration wizard end to end?
November 1, 2011 at 9:26 am
another factor as to acceptable loss of data and spending etc is your RTO, you need to know that with your backup routines you can recover within your RTO as...
November 1, 2011 at 8:22 am
a bit crude, but you get the idea
create table a (a varchar(10))
go
insert into a values ('123abc');
insert into a values ('1023');
insert into a values ('12dcrttg');
insert into a values ('frtgwef');
insert into a...
November 1, 2011 at 8:17 am
Believe this to be a duplicate post
http://www.sqlservercentral.com/Forums/Topic1197945-391-1.aspx
November 1, 2011 at 4:18 am
hemdbya (11/1/2011)
I am also facing the same problem while querying through linked server of SYBASE ASE OLEDB PROVIDER. I have just use simple join query.
I have used the Sybase...
November 1, 2011 at 3:33 am
Thanks Gail, I have to say I didn't know that about the dmv.
I have always been told to try and get a cluster which best suits the business, but I...
October 31, 2011 at 3:12 pm
The wizard will put 5 source & destinations in to 1 DFT, but from what I know, you can only do 1 table between a source and a destination, should...
October 31, 2011 at 10:40 am
The first thing you need to do is create a clustered index, take a look through sys.dm_db_missing_index_details for a list of indexes which SQL thinks you would benefit from, but...
October 31, 2011 at 10:23 am
Thanks Gail, I missed that.
Looks like a clustered index is needed to switch it from a heap to a tree.
Just to decide which columns the clustered index is better suited...
October 31, 2011 at 9:48 am
Not a problem, always glad to help someone in need if I can.
Thanks to Gail as well, I should of mentioned that 1 is a stupid number to shrink to...
October 31, 2011 at 9:43 am
most of the documentation says if fragmentation is less than 30% then a reorganize is the way to go and if its above 30% then rebuild
what is the page split...
October 31, 2011 at 9:38 am
its six of one, half a dozen of then other, wizard or code, entirely up to you. personally I like to do things in code, that way I kind...
October 31, 2011 at 8:49 am
you will have to use a shrinkfile command to reduce the amount of space the transaction log is using.
so issue sp_helpfile in the db, copy the name of the ldf...
October 31, 2011 at 7:49 am
are the databases in full recovery mode?
if so, do you need them to be in full recovery?
if you do need them in full recovery then you need to start taking...
October 31, 2011 at 7:14 am
Viewing 15 posts - 6,226 through 6,240 (of 6,400 total)