Viewing 15 posts - 1,156 through 1,170 (of 4,745 total)
have you got the right versions of the patches (32 bit rather than 64 bit say?)
February 14, 2012 at 6:01 am
Having verified the database is SQL2008 compatible and the app still works and attached the database to the SQL2008 instance you should run the following, mainly for performance reasons
-- set...
February 14, 2012 at 5:55 am
just to finish off this thread and put some info out there.
Went the drop column route in the end. DB in simple recovery mode
17GB table, 9.4 million rows, drop column...
February 14, 2012 at 2:41 am
I'm surprised Gail and Jeff haven't jumped all over this but that does not look like a good candidate for a clustered index, its certainly not narrow or ever-increasing.
Changing the...
February 14, 2012 at 2:22 am
two ways basically -
Using a command line utility called bcp
Or use SSIS. You get started with that by using using the wizard from SSMS. Right click the database and choose...
February 12, 2012 at 10:24 am
Its still valid in SQL2008 but is marked to be deprecated. try alter user instead.
What error do you get?
February 10, 2012 at 12:49 pm
the databases were suspect so the GUI would not alow any action on them. Going up one level to the database root node should allow you to restore a database...
February 8, 2012 at 9:14 am
It is perfectly acceptable to get your system databases back by moving the files back into place. I always have this option available to me for DR purposes. Its basically...
February 8, 2012 at 3:16 am
sql2k8 (2/7/2012)
you have to check for stripe unit size/ file allocation unit size and partition offset/stripe unit sizeif these values are not integer then the disks are not aligned
As Perry...
February 7, 2012 at 12:52 pm
when you get into terrabyte databases the emphasis shifts (IMHO) and direct backups to tape begin to make more sense. Thats a lot of disk to tie up for backups
However...
February 7, 2012 at 12:41 pm
have you tried without the rollback immediate?
trace flags can be set on the fly.
dbcc traceon(1222,-1)
dbcc traceoff)1222,-1)
February 7, 2012 at 6:08 am
If you backup to disk then offsite this backup to tape this also gives you two copies of the backup.
you keep perhaps 3 on disk for speedy recovery and a...
February 7, 2012 at 6:03 am
people may also want to look at sp_help_job and xp_sqlagent_enum_jobs
February 7, 2012 at 1:43 am
Only sysadmin will give them that level of control.
Otherwise set up a SQL account, have all jobs owned by that account and get everyone to log on with that account...
February 6, 2012 at 2:42 am
Viewing 15 posts - 1,156 through 1,170 (of 4,745 total)