Viewing 15 posts - 61 through 75 (of 130 total)
CELKO (10/13/2012)
October 13, 2012 at 4:03 pm
thanks OPC I'm going to put this on my test server now. I'll let you know how it turns out.
by the way why do you put the () after...
May 1, 2012 at 3:42 pm
How would I tie back a table such as the one below to the trigger?
USE GK50LIVE;
GO
SET NOCOUNT ON;
USE GK50LIVE
go
-- Create LIMITEDLOGINS Table
CREATE TABLE dbo.LimitedLogins
(
...
May 1, 2012 at 12:03 pm
If I need to have this trigger take effect on 4 logins would I just add the additional logins as such below.
USE master;
GO
CREATE TRIGGER connection_limit_trigger
ON ALL SERVER WITH EXECUTE...
April 30, 2012 at 8:33 pm
Would this be the code to use?
USE master;
GO
CREATE LOGIN login_test WITH PASSWORD = '3KHJ6dhx(0xVYsdf' MUST_CHANGE,
CHECK_EXPIRATION = ON;
GO
GRANT VIEW SERVER STATE TO login_test;
GO
CREATE TRIGGER connection_limit_trigger
ON ALL SERVER...
April 30, 2012 at 10:28 am
Bingo!!! You were right on the money. Thanks Wendel!!!!!!!
April 2, 2012 at 2:43 pm
Wendel,
you were correct on the column allowing nulls. I have changed this to
alter table CaseData Alter column CaseStatus BIT NOT NULL
In regards to setting a default value this...
April 2, 2012 at 2:08 pm
Wendel,
thanks I was able to create the odbc in the user dsn. I was trying to create it via the export part of external data but I realized i...
April 2, 2012 at 12:15 pm
I figured it out. I needed to add the accdb file as an import --> Link from the external data ribbon.
April 2, 2012 at 11:19 am
Got it. thanks Howard. I usually look out for the inellisense to pick up those mistakes but for some reason I didn't notice.
February 2, 2012 at 12:01 pm
ProofOfLife (1/15/2012)
First a word or two on your database. Ideally, you should match your datatypes when it comes to the Category ID attribute - you have it specified as...
January 16, 2012 at 7:37 am
Dev (1/14/2012)
January 14, 2012 at 10:05 am
I think I just found that out for myself.
How then can I make a drop down list in access show data in a seperate table yet relates to the...
January 13, 2012 at 4:02 pm
Doing it this way:
USE GKHELPDESK
GO
Alter Table dbo.CaseData
Add Constraint FK_Category_CatType Foreign Key (Category)
References dbo.Category (ID);
Allowed the command to complete successfully. Hopefully access will see it.
January 13, 2012 at 3:50 pm
Thanks Brandie. I added the below code and get an error message stating
Msg 1776, Level 16, State 0, Line 1
There are no primary or candidate keys in the referenced...
January 13, 2012 at 3:33 pm
Viewing 15 posts - 61 through 75 (of 130 total)