Viewing 15 posts - 3,136 through 3,150 (of 7,498 total)
Did you try to design your form row based.
I'm not an access specialist, but I've done some access 2003 things and didn't have issues with that.
I used a...
February 22, 2010 at 12:19 pm
ZeeAtl (2/22/2010)
A question I have is this about removing BUILTIN\Administrators from Security->Logins on SQL Server [2005] instance.
If I remove this account from Logins, but the domain users remain as Local\Administrator...
February 22, 2010 at 11:33 am
Should come to something like this.
SELECT T1.col1
, T3.col3
FROM T1
inner join T2
ON 1...
February 19, 2010 at 8:02 am
KISS !!
Just use an alert to launch the job !
Have a look at my little article "help to tighten use of cmdshell or sp_start_job"
http://www.sqlservercentral.com/scripts/Miscellaneous/31032/
This way, you get all...
February 19, 2010 at 7:30 am
If you really need to intervene ... use a ddl trigger
If you only need a notification, you might consider the asynchrone path.
example ddl trigger :
create TRIGGER [ddlDatabaseTriggerNonSA]
ON DATABASE...
February 19, 2010 at 7:22 am
Did you try his ?
UPDATE E
SET oprefno = R.ReturnValue
from dbo.#Encrypt E
, @ResultSet R
where E.ccno = @ccno
and R.ReturnValue is not null
Maybe even...
February 19, 2010 at 7:11 am
Check out %SystemRoot%\Cluster\CluAdmin.exe
it has a command line version ...
Topic "Managing a server cluster from the command line" at Technet:
http://technet.microsoft.com/en-us/library/cc779044%28WS.10%29.aspx
February 19, 2010 at 7:03 am
We are using sql server event notifications to capture the audit_login events.
cfr: http://www.sqlservercentral.com/articles/Administration/64974/
This works fine on all our servers, except for one that has +50 logins per second.
If you want...
February 18, 2010 at 7:46 am
there is also notification services which allows your application to cache the data locally and only refresh it when it receives a notification message from sqlserver.
I'm not a .net specialist,...
February 18, 2010 at 3:48 am
Lamprey13 (2/17/2010)
Jeffrey Williams-493691 (2/17/2010)
February 18, 2010 at 12:47 am
Just keep in mind extending a file is an expensive operation for your system.
Depending on your db usage, 50% free space may be desired state because of processing needs.
How many...
February 17, 2010 at 2:02 pm
Also state which columns you want to select.
- Only from table1 or from both tables ?
- How can you differentiate both result sets ?
I have a slight impression...
February 17, 2010 at 1:55 pm
As Elliott W stated, it will not start a second instance of the job.
It will register a message in sqlagent.out that the job was already running. 😎
February 17, 2010 at 1:41 pm
Keep in mind there is more to service broker than meets the eye !
First read a bit about it, so you know what it is all about and you...
February 17, 2010 at 2:49 am
:blink: that also goes for the minor changes in the pricing model(s) ...
if you ever succeed to pull out the needed data from your sqlinstance itself .....
:sick:
February 17, 2010 at 2:43 am
Viewing 15 posts - 3,136 through 3,150 (of 7,498 total)