Viewing 15 posts - 1,156 through 1,170 (of 2,897 total)
Lowell (11/30/2010)
homebrew01 (11/30/2010)
Lowell, I tweaked that a bit for my situation, and it worked quite nicely ... Thanks !
sweet ! i was hoping to fiddle with that old thing after...
November 30, 2010 at 6:41 pm
Lowell, I tweaked that a bit for my situation, and it worked quite nicely ... Thanks !
November 30, 2010 at 4:06 pm
We had performance issues after upgrading to 2005. Some of them were resolved after closely looking at the joins and finding we needed to modify or add the CONVERT functions...
November 30, 2010 at 7:51 am
I use this to script all the objects to files. As I recall, the .exe is not in 2005, so I copied it, and maybe a couple others from my...
November 29, 2010 at 7:58 am
A bit impatient ? (You could have done it manually by now)
Create a Windows secirity group through AD, then put the user(s) in that group, then give that group...
November 23, 2010 at 11:40 am
GilaMonster (11/21/2010)
To anyone still reading (and not running screaming), do not ever do that. The log is not an optional piece of the database, SQL cannot always recreate it if...
November 23, 2010 at 10:21 am
Sqlsavy (11/19/2010)
Unfortunately a junior DBA who got access to the server disabled the backup for some reason and forgot to enable....
When I have a job that I want disabled for...
November 23, 2010 at 10:06 am
Here's a query that you can run to check on when each database was last backed up and the recovery model.
I used this when I started at a new job...
November 22, 2010 at 8:18 am
Can it be varchar instead of char ?
Look at how much space the table is currently using to get an idea of the impact.
Are the database and log files on...
November 16, 2010 at 12:08 pm
Replication is a good option. Another option is use a linked server
truncate table ServerB.DatabaseB..TableB
insert into ServerB.DatabaseB..TableB
select * from DatabaseA..tableA
Why is SSIS not recommended at your company ?
November 12, 2010 at 8:12 am
One fallback position could be to take backups when they are still on the 2000 server, just before restoring to 2005. I assume you will do this anyway. In an...
November 11, 2010 at 2:49 pm
It's possible the indexes you want to delete are hard-coded as index hints. I use something like this to look for character strings in stored procedures
exec sp_MSforeachdb_db 'use [?] select...
November 11, 2010 at 1:35 pm
Not sure if this applies in this case, but I found this script somewhere ... (probably SSC) and have used it to see how far along a backup or restore...
November 11, 2010 at 10:25 am
I splice frequent t-log backups into my defragmentation routines to prevent large .trn file growth.
November 9, 2010 at 9:22 am
muthukkumaran (11/9/2010)
rajanishvibha 3763 (11/9/2010)
Hi Sirwhat new in sql server 2005 for backup
In this forum --> go SQL Server 2005 --> Backups-->Add Topic
-->then finally ask your queries
And try to be a...
November 9, 2010 at 7:42 am
Viewing 15 posts - 1,156 through 1,170 (of 2,897 total)