Viewing 15 posts - 5,041 through 5,055 (of 6,395 total)
The question you have to ask is this, if the database runs your application, should the clients be updating your application database? What if they drop a table which...
May 16, 2012 at 7:18 am
SQLCrazyCertified (5/16/2012)
jitendra.padhiyar (5/15/2012)
During upgradation, all the user database will be upgraded to new version, but what will happen to system databases?
When you install newer version, system databases comes with...
May 16, 2012 at 7:10 am
Div Goud (5/16/2012)
i want code for all databases backups out in single lines of script it is for full,diff
How do you currently back up your databases?
All you need to do...
May 16, 2012 at 7:06 am
Stewart "Arturius" Campbell (5/16/2012)
May 16, 2012 at 7:04 am
This URL will help you understand DELCARE http://msdn.microsoft.com/en-us/library/ms188927.aspx
You will need to do something like this
DECLARE @column1 somedatatype, @column2 somedatetype, @column3 somedatatype
May 16, 2012 at 6:56 am
I have just tested this against my test user limiting permissions to db_datareader only and they cannot export the scripts. They can get all the way through the wizard...
May 16, 2012 at 6:50 am
you need to declare the variables @columnNames and @columnConvert, take a look at the DECLARE syntax and then define the correct data type which is needed for the variables.
May 16, 2012 at 6:45 am
do you want compression on all backups, full, diff, tx log? if so just set the compression on as standard at the server level. otherwise simply add WITH...
May 16, 2012 at 6:33 am
then you need to look at the running totals method which Jeff has detailed in his post.
May 16, 2012 at 4:12 am
This is down to the scope and inheritance, as you granted the permissions at the database level not the procedure level, so you wont see it at the lowel level...
May 16, 2012 at 3:58 am
Not a problem, that got me out of a number of holes where our Junior DBA issued a modify file which had a space at the beginning of the file...
May 16, 2012 at 3:41 am
what about with the /f switch which should just start the MASTER database to which you should then be able to execute the alter database statements
http://msdn.microsoft.com/en-us/library/ms345408%28v=SQL.100%29.aspx
May 16, 2012 at 3:17 am
I would also look at your drive configuration after it and see if your current config / RAID levels are sufficient enough to support failure of hardware to hopefully mitigate...
May 16, 2012 at 3:12 am
I think you would have to start SQL in single_user or minimal config mode and then issue a number of alter database commands to alter where it thinks TempDB lives...
May 16, 2012 at 3:00 am
Again, personal preference.
In the example you have given below, within BIDS (business intelligence development studio/visual studio) you have the option to right click a task and run it on its...
May 16, 2012 at 2:54 am
Viewing 15 posts - 5,041 through 5,055 (of 6,395 total)