Viewing 15 posts - 5,911 through 5,925 (of 7,501 total)
- generaly it's not a good practise to create userobjects in system databases. (master, msdb, modeldb)
- also when you create a login or grant connect to a server, be sure...
February 15, 2007 at 1:22 am
No ! Because :
- you never know when it's going to decide to shrink.
- the shrink operation will have it's impact on the system and for the users
- your database...
February 15, 2007 at 12:21 am
If you choose for the 2-column solution put the columns first which has the most unique values ! So it filters on top of the tree
February 14, 2007 at 1:28 pm
- as long as you keep in mind that identity may leave you some gaps
- when you use objects with identity in parallel (insert with multiple users) you'll see...
February 14, 2007 at 1:26 pm
- saving the storage from float to int will save you space in the parent table and in de child-tables !
- indexes based on int will be smaler so they...
February 14, 2007 at 1:18 pm
just my 2ct
- check the queryplan your delete query is using ! If it shows a scan, you're in troubles.
- provide an index on column Expires to support the delete.
-...
February 14, 2007 at 5:39 am
- AFAIK there is no "alter database xyz modify filegroup FG3 set offline"
- Did you take a look at "Performing Piecemeal Restores " in books online ?
- in a...
February 14, 2007 at 1:19 am
- Check out Try/Catch in Books online (BOL)
- Scan / Seek see BOL "Table and Index Organization", "Reading Pages ", "Nonclustered Index Structures", "Clustered Index Structures",...
February 14, 2007 at 1:11 am
- Keep in mind that what you do within a trigger is "in transaction" ! Timeouts, locking,... !!
- keep in mind there may be more than one row involved in the...
February 13, 2007 at 2:51 am
just to add to Michael Valentine Jones ' reply :
don't forget to throw everyone out of the database befor you try to restore...
February 12, 2007 at 6:07 am
.... create a schedule task .... ![]()
I'd prefer to use a sqlagent job, because it captures jobinformation.
Maybe you cannot do this because your system's...
February 12, 2007 at 12:31 am
...Could not allocate new page for database tempdb....
You may have been running into a file allocation timeout. Sqlserver only waits for a certain time to receive a "file extended" reply...
February 12, 2007 at 12:25 am
- it would look like bad code ! ![]()
- keep in mind you have no control over the availability of the counterparty !
February 9, 2007 at 12:16 am
Viewing 15 posts - 5,911 through 5,925 (of 7,501 total)