Viewing 15 posts - 511 through 525 (of 790 total)
Don't do double post!
All reply should be in this post:
http://www.sqlservercentral.com/Forums/Topic627895-146-1.aspx
December 31, 2008 at 2:25 am
We have double post all reply should be in this post:
http://www.sqlservercentral.com/Forums/Topic627895-146-1.aspx
December 31, 2008 at 2:23 am
jaydeep (12/30/2008)
Yes I found the same one.Thank you.
Cheers,
Jaydeep
Ok...can you post the info how did you find the solution!? - just for info ...couz we here are trying everyday to help...
December 30, 2008 at 6:47 am
I agree with Gila's solution ...this is the best way you can do!:cool:
December 30, 2008 at 6:28 am
Raghavender (12/30/2008)
Apart this,can we change the active logins to inactive ?
Simple no!
These info are coming from Master database sys tables! You should write other code to enable or disable users...
December 30, 2008 at 5:56 am
Raghavender (12/30/2008)
can any body provide me How to find out Active and inactive logins of a SQL server logins.
Inactive logins means the logins which are not using for more...
December 30, 2008 at 5:35 am
I think better is to do with T-SQL !
Simple:
First Drop Constraint then
Add Constraint again
ALTER TABLE Your_Table
DROP CONSTRAINT constraint_name;
ALTER TABLE Your_Table
ADD CONSTRAINT constraint_name FOREIGN KEY (your_field) REFERENCES Ref_Table_Name(Ref_field) ON DELETE...
December 30, 2008 at 3:26 am
dhunted2000 (12/30/2008)
hehe..i guess that solves my problem..
thanks to you guys..
Anyway ...you are welcome!
😛
December 30, 2008 at 2:53 am
How many records do you have in you table!?
December 30, 2008 at 2:26 am
I don't know what is your code but you can look here that everything is OK!
CREATE TABLE TAB2
(
DATE DATETIME,
EMP INT
);
CREATE TABLE TAB1
(
DATE DATETIME
);
INSERT INTO TAB2
SELECT '01/01/2008', 123
UNION ALL
SELECT '02/01/2008', 123
UNION...
December 30, 2008 at 2:21 am
Patrick Womack (12/29/2008)
Thanks, Dugi.The Access database is not password protected. The linked server works sometimes (once a day), but it fails often.
So do you have still problem with linking...
December 29, 2008 at 9:11 am
dobinf (12/29/2008)
ok I am new to this site. Can you please solve my problem?
Sure that you are new here and you are welcome ... but please read carefully all the...
December 29, 2008 at 6:44 am
Chirag (12/2/2008)
i think i got this from some code written by Jeff Modem 🙂
Yes he has skills to generate the code in professional way, simply he's Code Generator!
:hehe:
December 29, 2008 at 6:41 am
Yea ... no application which support this file format ...and from google results have info something with dos!
December 29, 2008 at 6:36 am
Is the Access file with password!?
December 29, 2008 at 6:31 am
Viewing 15 posts - 511 through 525 (of 790 total)