Viewing 15 posts - 91 through 105 (of 167 total)
It will be good for you to start through Analysis Services step by step Tutorials. These are installed with your analysis services.
January 20, 2009 at 2:42 am
The main point is to create some system stored procedures in all new created databases at database creation time. Currently these system stored procedures are created at the time whenever...
January 19, 2009 at 4:49 am
It works for other owners but does not work for sys.
January 19, 2009 at 4:28 am
I require to create system stored procedures like that of sp_creatediagram and sp_helpdiagramdefinition. These are created later when you start working on diagram of any database for first time. I...
January 19, 2009 at 1:42 am
I want few stored procedures to be created in every new database. I created these procedures in model database. But as i create new database the said procedures are not...
January 19, 2009 at 12:46 am
I want to define some objects in model database, so that each new database may contain them. Creating the objects as user object in model database is not working. How...
January 19, 2009 at 12:31 am
thanks for the help, the reason to get me confuse was that function db_name(dbid) was not providing me name of any db. So now i have got it.
January 1, 2009 at 11:03 pm
I am trying to get cache objects as we get through syscacheobjects in SS2000. There we have dbid for databases to which the cache object belongs.
January 1, 2009 at 9:45 pm
Are you facing problem for writing a trigger or for implementing logic in it?
November 27, 2008 at 11:43 pm
I think you may use trigger to easily implement this logic. Any ready made method is not available.
November 27, 2008 at 11:33 pm
As long as SQL Server is running you can not delete the database. Simply set it to single user mode and restore it with over write option enabled. You will...
November 27, 2008 at 10:54 pm
For changing fro example adventureworks in to single user mode
ALTER DATABASE adventureworks SET SINGLE_USER
and for again to multi user mode
ALTER DATABASE adventureworks SET MULTI_USER
November 27, 2008 at 10:26 pm
Please check these one by one for space
sp_msforeachdb 'dbcc showfilestats'
GO
sp_msforeachdb 'sp_spaceused'
GO
sp_databases
GO
November 27, 2008 at 3:51 am
You can restore a database by just using .bak file / (backup file). To attach a database you need .mdf - .ldf files.
November 18, 2008 at 2:45 am
usually a graphical execution plan is read from right to left and top to bottom. Scans are bad and seeks are good. there are two types of execution plans
Estimated (generated...
November 18, 2008 at 2:42 am
Viewing 15 posts - 91 through 105 (of 167 total)