Viewing 15 posts - 136 through 150 (of 207 total)
If a production system, please don't forget to take a full backup prior to shrinking your log file. I would hate for you to need to do a point...
February 14, 2008 at 9:09 am
Amu
You are correct. Diffs are only what's changed since the last full backup. The size of the diff backup will grow each day until the next full backup....
February 13, 2008 at 1:04 pm
You are definately on the right track. The first step would be to take the full and restore it at the new datacenter. I then recommend taking as...
February 13, 2008 at 12:24 pm
Hopefully you are running your database is full mode, because that is the only way you can recover from the accidental delete now. If not, there is no way...
February 13, 2008 at 11:55 am
I agree. That is how I accomplish my backup of the backup procedures. Of course the next step is to ensure you have a copy of the backup...
February 13, 2008 at 11:06 am
I would use two loops to solve this issue. The first loop is the mastr and contains the information for table 1. the second would loop around table b...
December 19, 2007 at 10:17 am
Peter
I agree with you about the convert function, that was a hack of some other code that I have that actually reads data stored in the SQL Server. I...
December 19, 2007 at 5:05 am
You can also use what is calledl the poor man's cursor to loop through the recordset as well. It's a little bit more code but is almost as efficient...
December 18, 2007 at 11:29 am
Have you looked into using the Script task? I have used it to loop through records. May not be the most efficient, but you have great control there.
Marvin
December 18, 2007 at 11:13 am
Also remember, there is a difference between the 32bit and 64bit environment. Since my database is 64bit and my ETL box is in a 32bit environment, I store them...
December 18, 2007 at 10:01 am
Jan
try creating a global variable for the file name and then set the file name in the file. In my packages I run an SQL task of the following
SELECT...
December 18, 2007 at 9:07 am
Have you thought of partitioning the tables? you can place the partitions in certain filegroups and then backup those filegroups.
May 22, 2007 at 12:09 pm
Make sure to check the connection string to the SQL Server 2005 database. The 2000 server may not have the latest MDAC and therefore can not access the 2005 server. ...
May 22, 2007 at 11:58 am
The advantage of clustered indexes is that the data is physically ordered where as other indexes are pointers. When used, you should try to place the clustered index on the...
April 11, 2007 at 7:14 am
Viewing 15 posts - 136 through 150 (of 207 total)