Viewing 11 posts - 1 through 11 (of 11 total)
Hi,
I am in the same situation. I need to modify the size of the tempdb lower than its current size. Can you please post the command how you did...
July 25, 2012 at 3:55 pm
Hi,
By restoring it that way did not you loose the logins and linked server information stored in your original master database? How did you recover those?
Thanks
Ameena
June 8, 2012 at 12:32 pm
Check out this post with possible solution to your problem.
October 2, 2011 at 8:48 pm
Database has log file and data file. When you shrink database you are shrinking both files. When you are doing shrink file, you can define which file you want to...
August 16, 2011 at 2:19 pm
If you want all table and procedures, why not use the production database backup to restore the database on your laptop? you can automate this through a job also.
If...
August 14, 2011 at 10:59 pm
After adding the server with 'local' in the query and restarting sql server did the trick.
Thanks to both of you for your replies.
May 19, 2011 at 9:35 pm
USE [MyDB]
GO
EXEC sp_addrolemember N'db_datareader', N'username'
GO
EXEC sp_addrolemember N'db_datawriter', N'username'
GO
Grant Execute to 'username'
GO
May 10, 2011 at 3:55 pm
select s.name, j.command from msdb.dbo.sysjobsteps j
inner join msdb.dbo.sysjobs s
on s.job_id=j.job_id
where command like '%sqlbackup%'
March 14, 2011 at 11:01 am
What Anum Verma suggested will also work exactly the same for SQL Server 2005. You did not mention what version of 2005 you are using. If you are using express...
February 14, 2011 at 10:43 pm
As per Microsoft Pricing http://www.microsoft.com/sqlserver/2005/en/us/Pricing.aspx
Developer Edition
May be installed and used by one user to design, develop, test and demonstrate your programs on as many systems as needed.
Includes...
February 14, 2011 at 9:52 pm
What you are looking for is data masking. In my previous company, we used functions with custom algorithm which would change data in development every time it is refreshed from...
February 6, 2011 at 5:01 pm
Viewing 11 posts - 1 through 11 (of 11 total)