Viewing 15 posts - 8,266 through 8,280 (of 13,460 total)
I have this appllicaiton in my PortableApps collection: it finds keys for 2000/2005/2008, and ifg you know where the key to anything is stored, you can add it to the...
December 22, 2010 at 8:53 am
Elliott Whitlow (12/22/2010)
December 22, 2010 at 8:10 am
it has to do with your function...if you did not use WITH SCHEMABINDING in the definition, i'm sure the function is non-deterministic, and thus any column that uses the function...
December 22, 2010 at 5:44 am
SSMS uses the extended stored procedures master.dbo.xp_sqlagent_monitor and master.dbo.sys.xp_servicecontrol to stop and start the services for the agent or the service on the server.
those procs are called without...
December 21, 2010 at 1:20 pm
Geoff A (12/21/2010)
it is based on windows level permissions. local security and domain security policies.
users in...
December 21, 2010 at 1:03 pm
only a sysadmin has the ability to start and stop the server via SSMS; so do not give their login sysadmin and you are all set; just make them a...
December 17, 2010 at 1:49 pm
Kricky (12/17/2010)
When I ran that query, I didn't get any results returned, so I will just let it finish. Thanks Adiga.
kill it! kill it with fire!
it doesn't matter what...
December 17, 2010 at 12:47 pm
for an index to be created, it has to be on an object that exists inside the database; that way constraints can be enforced.
constraints cannot be created accross db boundaries.;...
December 17, 2010 at 10:00 am
you might use soemthing like this to help track it down.
this can give you the spid of who ran the offending statement if it was recently run:
SELECT
...
December 17, 2010 at 9:54 am
sangerex (12/17/2010)
Thank for your reply, but i know that already and my supervisor required me to find a way solving that problem 🙁
yep caught between the proverbial rock and a...
December 17, 2010 at 9:41 am
any field that needs to be searched should not be hashed; otherwise you are right, you can only get an exact match of hashed values; hashes are not sequential so...
December 17, 2010 at 8:46 am
there are some free reports from Microsoft that you can add to your Reporting Services:
December 16, 2010 at 2:20 pm
looks like the insert statement from your ddl audit has a table that doesn't allow nulls for the object name;
i'm thinking that the creation of statistics might not generate a...
December 16, 2010 at 1:37 pm
it is actually deceptively simple...you just repalce a palceholder in the msg body with the variable actuial value ...just make sure the variable values cannot be null, and you...
December 16, 2010 at 1:29 pm
From the GUI, you cannot; switching a table from one schema to another, at least in 2008, requires a script; there's no GUI to help you do it.
The GUI lets...
December 16, 2010 at 1:17 pm
Viewing 15 posts - 8,266 through 8,280 (of 13,460 total)