Viewing 15 posts - 2,881 through 2,895 (of 7,502 total)
karmour (9/1/2010)
http://support.microsoft.com/kb/2265716
We did these late last week and we...
September 1, 2010 at 1:22 pm
Simon Facer (8/31/2010)
SELECT HostName
FROM #Who2
WHERE SPID1...
August 31, 2010 at 7:49 am
DBASam (8/31/2010)
thats the problem, the application creates the objects with "create table xyz .... on primary" hard coded
Yep .... stupid, but hard reality.
Still, just pop the question to the...
August 31, 2010 at 6:48 am
You can set a filegroup to be the "default".
Alter database [yourdb] MODIFY FILEGROUP FGUserData DEFAULT;'
This means, if they don't specify [primary] as the objects filegroup, the object will be created...
August 31, 2010 at 6:23 am
As from sql2005 you need to be granted the "view definition" to be able to see the actual ddl.
If you are the object owner you have this authority for this...
August 31, 2010 at 5:42 am
The benefit of not having the data of your user objects in the primary filegroup, is that in such case, your primary filegroup would only contain catalog info.
This may be...
August 31, 2010 at 5:34 am
GilaMonster (8/31/2010)
...and they ignore me half the time
A real DBA would be ignored at least 75% of the cases :w00t::w00t:
August 31, 2010 at 4:52 am
You can use SSMS \ maintenance plans \ select your plan and then select the History information.
You'll see the step that failed and on the bottom of that panel, you...
August 31, 2010 at 1:26 am
- is your db-level 100 ?
- I should be possible to alter your column defs, but you must check the restrictions on sparse columns: http://msdn.microsoft.com/en-us/library/cc280604.aspx
BOL also states sparse as an...
August 30, 2010 at 12:38 pm
Seems to be a GUI problem.
Can you create the alert and its response manually via a TSQL panel ?
August 30, 2010 at 12:22 pm
smthembu (8/30/2010)
I have SQL Svr 2008 R2 & OS Windows 2008 R2 Std, I have created a backup maintenance plan to backup to one of our backup drive. Certain...
August 30, 2010 at 8:02 am
ps. (8/30/2010)
...
I created a test database in 2005 and tried to delete system SP but it did not allow me even though i have sysadmin privilage. Can't test it out...
August 30, 2010 at 7:54 am
Viewing 15 posts - 2,881 through 2,895 (of 7,502 total)