Viewing 15 posts - 241 through 255 (of 360 total)
I like the new activity monitor.
There's also a button for it on the toolbar, which is handier yet.
Good change, IMO.
~BOT
January 9, 2009 at 12:44 pm
GSquared (1/9/2009)
You might also want to look into a natural primary key, instead of a surrogate key
*high five*
A Man after my own heart. Surrogate keys are the devil! ...
January 9, 2009 at 12:39 pm
Here's my crack at it:
you need some tables...
user_roles that stores the relationship between users and roles (2 columns userid and siteid)
site_links '' '' '' sites and links
user_sites "" ""...
January 9, 2009 at 12:02 pm
I don't think there's an easy way.
My only suggestion is to use Windows search for .mdf and .ldf and cross reference it with your output from select physical_name from sys.master_files.
If...
January 9, 2009 at 11:57 am
Jonathan Kehayias (1/8/2009)
SQLBOT (1/8/2009)
Using this same image and configuration, Buck has discussed this before, that you would be better off going physical for this implementation using 5 instances on the...
January 8, 2009 at 2:35 pm
I wasn't aware of that issue... bizarre!
You might just have to use serverproperty('servername') instead of @@server
@@server can be out-of-date if you rename a server incorrectly, but your thinking...
January 8, 2009 at 11:01 am
Erin (1/8/2009)
Adding db_denydatawriter will not stop them from making updates through the...
January 8, 2009 at 10:39 am
Aha! Decimal must be immune to a true round::
Try this one!
DECLARE @Gains AS float
SET @Gains=RAND()
SELECT
@Gains
...
January 8, 2009 at 10:27 am
BuckWoody (1/8/2009)
Most often the problems...
January 8, 2009 at 10:22 am
besides try / catch blocks, I still use the old school return codes from the stored procedures.
example:
declare @ret int
exec @ret = sp_rename --..... etc
if @ret <> 0
begin
...
January 8, 2009 at 9:23 am
There shouldn't be a reason to store the password in the stored procedure.
you might need to dynamically generate SQL and use exec() or sp_executesql, but you should be able to...
January 8, 2009 at 8:58 am
investigate the ROUND() function.
~BOT
January 8, 2009 at 8:45 am
Not to be a forum hog (oink oink),
but something else to consider with SANs and VM's, is that lots of your hardware performance measurements go flying out the window.
for...
January 8, 2009 at 8:36 am
We use VM's in production quite a bit.
It's a great (cheap) solution for those vendor applications that require SA.
Licensing is an issue for those not on enterprise licensing agreements, but...
January 8, 2009 at 8:14 am
A SQL Server Central points Bailout!
:blink:
What is this world coming to?
I'll confess that I'll be a benefactor to Steve's 700 billion point bailout package.
Looking forward to the forums stimulus package,...
January 6, 2009 at 8:40 am
Viewing 15 posts - 241 through 255 (of 360 total)