Viewing 15 posts - 451 through 465 (of 517 total)
Compression saves you a TON of disk space, and you can compare cost savings there for backups on your SAN, tapes, etc.
Also, if you already happen to use 3rd party...
August 27, 2010 at 12:35 pm
I manage a bit over 20 servers at my work and to make things easy, I made a centralized reporting page that is automatically updated by sql jobs for every...
August 27, 2010 at 12:28 pm
TcW_1978 (8/26/2010)
Almost works, Error : Msg 7411, Level 16, State 1 Server is not configured for RPC
Found this article :
But the server referenced as the 'linked server'...
August 26, 2010 at 3:35 pm
Venky Subramaniam (8/26/2010)
The server has 32 GB RAM, 8 CPUs, and SQL Server has been configured to utilize as much as possible
That's most likely your issue. There is not enough...
August 26, 2010 at 1:28 pm
Try manually granting NTFS permission on the installer file to Everyone, or try moving to another folder. Also check the windows event log to see if anything is written there.
edit:...
August 26, 2010 at 12:52 pm
Or if you're looking to just make a quick copy of the data..
SELECT * INTO dbo.tblname_backup_date FROM dbo.tblname
I do this regularly before a data update happens that could potentially mess...
August 26, 2010 at 8:43 am
Prema sambandam (8/25/2010)
Thanks guys. it is working. is there any to automate so that every time new row added it will update by itself
Yes, the trigger I posted will do...
August 26, 2010 at 7:40 am
Do you have file system backups? If so, then just grab the .dtsx file from there and replace the corrupt one.
August 25, 2010 at 2:58 pm
Where is the package stored? File system, or in the database?
If it is stored in the database, you'll need the msdb..sysdtspackages90 table I believe..I have never had to restore one...
August 25, 2010 at 2:53 pm
Do sp_dropserver 'oldname' first to drop the old name, then add the new one with 'local'
August 25, 2010 at 2:47 pm
How many rows need to be deleted here? And how many rows in the table? It would have to be a massive amount for performance to be an issue in...
August 25, 2010 at 2:45 pm
You can't downgrade anything in SQL server (databases versions, service packs, SSIS packages).
Your only option is restoring from backup, as far as I know.
August 25, 2010 at 2:39 pm
Also you may have to script out and recreate your jobs, and potentially logins (they have the server name hardcoded).
August 25, 2010 at 2:34 pm
If you have a table with the values to be deleted (or can create a temporary one) you could just Inner Join on both fields.
August 25, 2010 at 2:32 pm
Yeah, one of the million odd things about sharepoint.
I don't bother backing up the Admin or Search databases, since they're not usable and can easily be recreated from the app...
August 25, 2010 at 2:27 pm
Viewing 15 posts - 451 through 465 (of 517 total)