473,766 Members | 2,060 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Insert Into

I'm fairly confident in my knowledge of SQL but I'm stumped with regards
with an Insert Into statement in Access 2003. I've got a 4 column table
that I've simplified about as much as I can, no primary key, no indexes(at
least I don't think I have any), allow duplicates, allow zero length fields,
the fields in the new table are of the same type of the fields in the old
table, etc. Maybe someone can give me an idea as to what I'm doing wrong.
MS Access I've noticed doesn't give me any error messages to tell me what
I'm doing wrong. The only way I can tell it's not working is by checking
the table and seeing it's still empty.
When I run the Select statement by itself, it's returns what I want but for
some reason, my table still remains empty. Any sugestions?

Insert Into [Data Units TW Inuvik] (SType, Owner, Area, Unit)
SELECT [Data Units].Stype, [Data Units].Owner, [Table Owner].Area, [Data
Units].Unit
FROM [Table Owner] INNER JOIN [Data Units] ON [Table Owner].Owner = [Data
Units].Owner
WHERE ((([Data Units].InDate)<=#8/31/2004#) AND (([Data
Units].TmDate)>=#8/31/2004# Or ([Data Units].TmDate) Is Null) AND (([Table
Owner].Area)="Inuvik" ) AND (([Data Units].Unit)>=8677770 000 And ([Data
Units].Unit)<=8677779 999) AND (([Data Units].Template)<>"PR PD")) OR ((([Data
Units].InDate)<=#8/31/2004#) AND (([Data Units].TmDate)>=#8/31/2004# Or
([Data Units].TmDate) Is Null) AND (([Table Owner].Area)="Inuvik" ) AND
(([Data Units].Unit)>=8676780 000 And ([Data Units].Unit)<=8676789 999) AND
(([Data Units].Template)<>"PR PD"))
GROUP BY [Data Units].Stype, [Table Owner].Area, [Data Units].Owner, [Data
Units].Unit
ORDER BY [Data Units].Stype;
Nov 13 '05 #1
6 3102
How are you running this query? By opening the query from database window?
From VBA code or macro? Post more details about your process.

--

Ken Snell
<MS ACCESS MVP>

"efgh" <ef**@neverland .com> wrote in message
news:so******** ************@nn rp1.uunet.ca...
I'm fairly confident in my knowledge of SQL but I'm stumped with regards
with an Insert Into statement in Access 2003. I've got a 4 column table
that I've simplified about as much as I can, no primary key, no indexes(at
least I don't think I have any), allow duplicates, allow zero length fields, the fields in the new table are of the same type of the fields in the old
table, etc. Maybe someone can give me an idea as to what I'm doing wrong.
MS Access I've noticed doesn't give me any error messages to tell me what
I'm doing wrong. The only way I can tell it's not working is by checking
the table and seeing it's still empty.
When I run the Select statement by itself, it's returns what I want but for some reason, my table still remains empty. Any sugestions?

Insert Into [Data Units TW Inuvik] (SType, Owner, Area, Unit)
SELECT [Data Units].Stype, [Data Units].Owner, [Table Owner].Area, [Data
Units].Unit
FROM [Table Owner] INNER JOIN [Data Units] ON [Table Owner].Owner = [Data
Units].Owner
WHERE ((([Data Units].InDate)<=#8/31/2004#) AND (([Data
Units].TmDate)>=#8/31/2004# Or ([Data Units].TmDate) Is Null) AND (([Table
Owner].Area)="Inuvik" ) AND (([Data Units].Unit)>=8677770 000 And ([Data
Units].Unit)<=8677779 999) AND (([Data Units].Template)<>"PR PD")) OR ((([Data Units].InDate)<=#8/31/2004#) AND (([Data Units].TmDate)>=#8/31/2004# Or
([Data Units].TmDate) Is Null) AND (([Table Owner].Area)="Inuvik" ) AND
(([Data Units].Unit)>=8676780 000 And ([Data Units].Unit)<=8676789 999) AND
(([Data Units].Template)<>"PR PD"))
GROUP BY [Data Units].Stype, [Table Owner].Area, [Data Units].Owner, [Data Units].Unit
ORDER BY [Data Units].Stype;

Nov 13 '05 #2
I'm trying to run it from from the database window.

"Ken Snell" <kt***********@ ncoomcastt.rena etl> wrote in message
news:a6******** ************@co mcast.com...
How are you running this query? By opening the query from database window?
From VBA code or macro? Post more details about your process.

--

Ken Snell
<MS ACCESS MVP>

"efgh" <ef**@neverland .com> wrote in message
news:so******** ************@nn rp1.uunet.ca...
I'm fairly confident in my knowledge of SQL but I'm stumped with regards
with an Insert Into statement in Access 2003. I've got a 4 column table
that I've simplified about as much as I can, no primary key, no
indexes(at
least I don't think I have any), allow duplicates, allow zero length

fields,
the fields in the new table are of the same type of the fields in the old
table, etc. Maybe someone can give me an idea as to what I'm doing
wrong.
MS Access I've noticed doesn't give me any error messages to tell me what
I'm doing wrong. The only way I can tell it's not working is by checking
the table and seeing it's still empty.
When I run the Select statement by itself, it's returns what I want but

for
some reason, my table still remains empty. Any sugestions?

Insert Into [Data Units TW Inuvik] (SType, Owner, Area, Unit)
SELECT [Data Units].Stype, [Data Units].Owner, [Table Owner].Area, [Data
Units].Unit
FROM [Table Owner] INNER JOIN [Data Units] ON [Table Owner].Owner = [Data
Units].Owner
WHERE ((([Data Units].InDate)<=#8/31/2004#) AND (([Data
Units].TmDate)>=#8/31/2004# Or ([Data Units].TmDate) Is Null) AND
(([Table
Owner].Area)="Inuvik" ) AND (([Data Units].Unit)>=8677770 000 And ([Data
Units].Unit)<=8677779 999) AND (([Data Units].Template)<>"PR PD")) OR

((([Data
Units].InDate)<=#8/31/2004#) AND (([Data Units].TmDate)>=#8/31/2004# Or
([Data Units].TmDate) Is Null) AND (([Table Owner].Area)="Inuvik" ) AND
(([Data Units].Unit)>=8676780 000 And ([Data Units].Unit)<=8676789 999) AND
(([Data Units].Template)<>"PR PD"))
GROUP BY [Data Units].Stype, [Table Owner].Area, [Data Units].Owner,

[Data
Units].Unit
ORDER BY [Data Units].Stype;


Nov 13 '05 #3
I've tried inserting a row of values into the table, rather than using the
select statement and it worked, however, when I looked at the values in the
table, the column headers all got changed to EXPR1(Or something like that,
essentially, the column header got changed), EXPR2, etc..

"Ken Snell" <kt***********@ ncoomcastt.rena etl> wrote in message
news:a6******** ************@co mcast.com...
How are you running this query? By opening the query from database window?
From VBA code or macro? Post more details about your process.

--

Ken Snell
<MS ACCESS MVP>

"efgh" <ef**@neverland .com> wrote in message
news:so******** ************@nn rp1.uunet.ca...
I'm fairly confident in my knowledge of SQL but I'm stumped with regards
with an Insert Into statement in Access 2003. I've got a 4 column table
that I've simplified about as much as I can, no primary key, no
indexes(at
least I don't think I have any), allow duplicates, allow zero length

fields,
the fields in the new table are of the same type of the fields in the old
table, etc. Maybe someone can give me an idea as to what I'm doing
wrong.
MS Access I've noticed doesn't give me any error messages to tell me what
I'm doing wrong. The only way I can tell it's not working is by checking
the table and seeing it's still empty.
When I run the Select statement by itself, it's returns what I want but

for
some reason, my table still remains empty. Any sugestions?

Insert Into [Data Units TW Inuvik] (SType, Owner, Area, Unit)
SELECT [Data Units].Stype, [Data Units].Owner, [Table Owner].Area, [Data
Units].Unit
FROM [Table Owner] INNER JOIN [Data Units] ON [Table Owner].Owner = [Data
Units].Owner
WHERE ((([Data Units].InDate)<=#8/31/2004#) AND (([Data
Units].TmDate)>=#8/31/2004# Or ([Data Units].TmDate) Is Null) AND
(([Table
Owner].Area)="Inuvik" ) AND (([Data Units].Unit)>=8677770 000 And ([Data
Units].Unit)<=8677779 999) AND (([Data Units].Template)<>"PR PD")) OR

((([Data
Units].InDate)<=#8/31/2004#) AND (([Data Units].TmDate)>=#8/31/2004# Or
([Data Units].TmDate) Is Null) AND (([Table Owner].Area)="Inuvik" ) AND
(([Data Units].Unit)>=8676780 000 And ([Data Units].Unit)<=8676789 999) AND
(([Data Units].Template)<>"PR PD"))
GROUP BY [Data Units].Stype, [Table Owner].Area, [Data Units].Owner,

[Data
Units].Unit
ORDER BY [Data Units].Stype;


Nov 13 '05 #4
Based on what you've posted, I am not sure what may be wrong.

You say the SELECT portion of the query is working (leaving off the INSERT
INTO portion). With this info, I would assume that some type of integrity
(duplicate primary key, duplicate unique key values, etc.) is being violated
by your attempt to insert the new records.

Do you have SetWarnings turned off in your database, and thus ACCESS is not
telling you that there is an error?
--

Ken Snell
<MS ACCESS MVP>
"efgh" <ef**@neverland .com> wrote in message
news:Dl******** ************@nn rp1.uunet.ca...
I'm trying to run it from from the database window.

"Ken Snell" <kt***********@ ncoomcastt.rena etl> wrote in message
news:a6******** ************@co mcast.com...
How are you running this query? By opening the query from database window? From VBA code or macro? Post more details about your process.

--

Ken Snell
<MS ACCESS MVP>

"efgh" <ef**@neverland .com> wrote in message
news:so******** ************@nn rp1.uunet.ca...
I'm fairly confident in my knowledge of SQL but I'm stumped with regards with an Insert Into statement in Access 2003. I've got a 4 column table that I've simplified about as much as I can, no primary key, no
indexes(at
least I don't think I have any), allow duplicates, allow zero length

fields,
the fields in the new table are of the same type of the fields in the old table, etc. Maybe someone can give me an idea as to what I'm doing
wrong.
MS Access I've noticed doesn't give me any error messages to tell me what I'm doing wrong. The only way I can tell it's not working is by checking the table and seeing it's still empty.
When I run the Select statement by itself, it's returns what I want but

for
some reason, my table still remains empty. Any sugestions?

Insert Into [Data Units TW Inuvik] (SType, Owner, Area, Unit)
SELECT [Data Units].Stype, [Data Units].Owner, [Table Owner].Area, [Data Units].Unit
FROM [Table Owner] INNER JOIN [Data Units] ON [Table Owner].Owner = [Data Units].Owner
WHERE ((([Data Units].InDate)<=#8/31/2004#) AND (([Data
Units].TmDate)>=#8/31/2004# Or ([Data Units].TmDate) Is Null) AND
(([Table
Owner].Area)="Inuvik" ) AND (([Data Units].Unit)>=8677770 000 And ([Data
Units].Unit)<=8677779 999) AND (([Data Units].Template)<>"PR PD")) OR

((([Data
Units].InDate)<=#8/31/2004#) AND (([Data Units].TmDate)>=#8/31/2004# Or
([Data Units].TmDate) Is Null) AND (([Table Owner].Area)="Inuvik" ) AND
(([Data Units].Unit)>=8676780 000 And ([Data Units].Unit)<=8676789 999) AND (([Data Units].Template)<>"PR PD"))
GROUP BY [Data Units].Stype, [Table Owner].Area, [Data Units].Owner,

[Data
Units].Unit
ORDER BY [Data Units].Stype;



Nov 13 '05 #5
I figured out what I was doing wrong. I was right clicking on the title bar
of the SQL window and choosing Datasheet View. Since I was seeing the
results of the query, I thought it was working, only to find out it wasn't
when I looked at the table. I didn't realize that in order to actually run
the query, you have to close it or save it, then go to the Database Window
and "Open" it from there. Thanks for the help though.
"Ken Snell" <kt***********@ ncoomcastt.rena etl> wrote in message
news:87******** ************@co mcast.com...
Based on what you've posted, I am not sure what may be wrong.

You say the SELECT portion of the query is working (leaving off the INSERT
INTO portion). With this info, I would assume that some type of integrity
(duplicate primary key, duplicate unique key values, etc.) is being
violated
by your attempt to insert the new records.

Do you have SetWarnings turned off in your database, and thus ACCESS is
not
telling you that there is an error?
--

Ken Snell
<MS ACCESS MVP>
"efgh" <ef**@neverland .com> wrote in message
news:Dl******** ************@nn rp1.uunet.ca...
I'm trying to run it from from the database window.

"Ken Snell" <kt***********@ ncoomcastt.rena etl> wrote in message
news:a6******** ************@co mcast.com...
> How are you running this query? By opening the query from database window? > From VBA code or macro? Post more details about your process.
>
> --
>
> Ken Snell
> <MS ACCESS MVP>
>
> "efgh" <ef**@neverland .com> wrote in message
> news:so******** ************@nn rp1.uunet.ca...
>> I'm fairly confident in my knowledge of SQL but I'm stumped with regards >> with an Insert Into statement in Access 2003. I've got a 4 column table >> that I've simplified about as much as I can, no primary key, no
>> indexes(at
>> least I don't think I have any), allow duplicates, allow zero length
> fields,
>> the fields in the new table are of the same type of the fields in the old >> table, etc. Maybe someone can give me an idea as to what I'm doing
>> wrong.
>> MS Access I've noticed doesn't give me any error messages to tell me what >> I'm doing wrong. The only way I can tell it's not working is by checking >> the table and seeing it's still empty.
>> When I run the Select statement by itself, it's returns what I want
>> but
> for
>> some reason, my table still remains empty. Any sugestions?
>>
>> Insert Into [Data Units TW Inuvik] (SType, Owner, Area, Unit)
>> SELECT [Data Units].Stype, [Data Units].Owner, [Table Owner].Area, [Data >> Units].Unit
>> FROM [Table Owner] INNER JOIN [Data Units] ON [Table Owner].Owner = [Data >> Units].Owner
>> WHERE ((([Data Units].InDate)<=#8/31/2004#) AND (([Data
>> Units].TmDate)>=#8/31/2004# Or ([Data Units].TmDate) Is Null) AND
>> (([Table
>> Owner].Area)="Inuvik" ) AND (([Data Units].Unit)>=8677770 000 And ([Data
>> Units].Unit)<=8677779 999) AND (([Data Units].Template)<>"PR PD")) OR
> ((([Data
>> Units].InDate)<=#8/31/2004#) AND (([Data Units].TmDate)>=#8/31/2004#
>> Or
>> ([Data Units].TmDate) Is Null) AND (([Table Owner].Area)="Inuvik" ) AND
>> (([Data Units].Unit)>=8676780 000 And ([Data Units].Unit)<=8676789 999) AND >> (([Data Units].Template)<>"PR PD"))
>> GROUP BY [Data Units].Stype, [Table Owner].Area, [Data Units].Owner,
> [Data
>> Units].Unit
>> ORDER BY [Data Units].Stype;
>>
>>
>
>



Nov 13 '05 #6
You can run the action query from the design view...click on the red
exclamation point in the center of the toolbar.
--

Ken Snell
<MS ACCESS MVP>

"efgh" <ef**@neverland .com> wrote in message
news:Bc******** ************@nn rp1.uunet.ca...
I figured out what I was doing wrong. I was right clicking on the title bar of the SQL window and choosing Datasheet View. Since I was seeing the
results of the query, I thought it was working, only to find out it wasn't
when I looked at the table. I didn't realize that in order to actually run the query, you have to close it or save it, then go to the Database Window
and "Open" it from there. Thanks for the help though.
"Ken Snell" <kt***********@ ncoomcastt.rena etl> wrote in message
news:87******** ************@co mcast.com...
Based on what you've posted, I am not sure what may be wrong.

You say the SELECT portion of the query is working (leaving off the INSERT INTO portion). With this info, I would assume that some type of integrity (duplicate primary key, duplicate unique key values, etc.) is being
violated
by your attempt to insert the new records.

Do you have SetWarnings turned off in your database, and thus ACCESS is
not
telling you that there is an error?
--

Ken Snell
<MS ACCESS MVP>
"efgh" <ef**@neverland .com> wrote in message
news:Dl******** ************@nn rp1.uunet.ca...
I'm trying to run it from from the database window.

"Ken Snell" <kt***********@ ncoomcastt.rena etl> wrote in message
news:a6******** ************@co mcast.com...
> How are you running this query? By opening the query from database

window?
> From VBA code or macro? Post more details about your process.
>
> --
>
> Ken Snell
> <MS ACCESS MVP>
>
> "efgh" <ef**@neverland .com> wrote in message
> news:so******** ************@nn rp1.uunet.ca...
>> I'm fairly confident in my knowledge of SQL but I'm stumped with

regards
>> with an Insert Into statement in Access 2003. I've got a 4 column

table
>> that I've simplified about as much as I can, no primary key, no
>> indexes(at
>> least I don't think I have any), allow duplicates, allow zero length
> fields,
>> the fields in the new table are of the same type of the fields in the
old
>> table, etc. Maybe someone can give me an idea as to what I'm doing
>> wrong.
>> MS Access I've noticed doesn't give me any error messages to tell me

what
>> I'm doing wrong. The only way I can tell it's not working is by

checking
>> the table and seeing it's still empty.
>> When I run the Select statement by itself, it's returns what I want
>> but
> for
>> some reason, my table still remains empty. Any sugestions?
>>
>> Insert Into [Data Units TW Inuvik] (SType, Owner, Area, Unit)
>> SELECT [Data Units].Stype, [Data Units].Owner, [Table Owner].Area,

[Data
>> Units].Unit
>> FROM [Table Owner] INNER JOIN [Data Units] ON [Table Owner].Owner =

[Data
>> Units].Owner
>> WHERE ((([Data Units].InDate)<=#8/31/2004#) AND (([Data
>> Units].TmDate)>=#8/31/2004# Or ([Data Units].TmDate) Is Null) AND
>> (([Table
>> Owner].Area)="Inuvik" ) AND (([Data Units].Unit)>=8677770 000 And
([Data >> Units].Unit)<=8677779 999) AND (([Data Units].Template)<>"PR PD")) OR
> ((([Data
>> Units].InDate)<=#8/31/2004#) AND (([Data Units].TmDate)>=#8/31/2004#
>> Or
>> ([Data Units].TmDate) Is Null) AND (([Table Owner].Area)="Inuvik" ) AND >> (([Data Units].Unit)>=8676780 000 And ([Data

Units].Unit)<=8676789 999) AND
>> (([Data Units].Template)<>"PR PD"))
>> GROUP BY [Data Units].Stype, [Table Owner].Area, [Data Units].Owner,
> [Data
>> Units].Unit
>> ORDER BY [Data Units].Stype;
>>
>>
>
>



Nov 13 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
7394
by: Jack | last post by:
I have a text file of data in a file (add2db.txt) where the entries are already entered on separate lines in the following form: INSERT INTO `reviews` VALUES("", "Tony's", "Lunch", "Great atmosphere. Good food.", " (Harry Houdini - 03/01/2004)"); INSERT INTO `reviews` VALUES("", "Le Chow Place", "Lunch", "yada yada", " (Herbert Hoover - 03/03/2004)"); INSERT INTO `reviews` VALUES("", "Golden Dragon", "Lunch", "Exquisite.
14
4300
by: serge | last post by:
I have a scenario where two tables are in a One-to-Many relationship and I need to move the data from the Many table to the One table so that it becomes a One-to-One relationship. I need to salvage the records from the many table and without going into detail, one of the reasons I can't do the opposite as there are records in the ONE table that I need to keep even if they don't have any child records in the MANY table. Below I created...
16
17018
by: Philip Boonzaaier | last post by:
I want to be able to generate SQL statements that will go through a list of data, effectively row by row, enquire on the database if this exists in the selected table- If it exists, then the colums must be UPDATED, if not, they must be INSERTED. Logically then, I would like to SELECT * FROM <TABLE> WHERE ....<Values entered here>, and then IF FOUND UPDATE <TABLE> SET .... <Values entered here> ELSE INSERT INTO <TABLE> VALUES <Values...
4
5485
by: Chris Kratz | last post by:
Hello all, We have run into what appears to be a problem with rules and subselects in postgres 7.4.1. We have boiled it down to the following test case. If anyone has any thoughts as to why this would be happening, we would appreciate feedback. We have tested on 7.3.4, 7.3.6 and 7.4.1 and all exhibit the same behavior. Test case one tries to populate table2 from table1 with records that are not in table2 already. Table2 gets...
2
3210
by: Geoffrey KRETZ | last post by:
Hello, I'm wondering if the following behaviour is the correct one for PostGreSQL (7.4 on UNIX). I've a table temp_tab with 5 fields (f1,f2,f3,...),and I'm a launching the following request : INSERT INTO temp_tab VALUES (1,2,3)
3
2313
by: MP | last post by:
Hi Posted this several hours ago to another ng but it never showed up thought i'd try here. using vb6, ado, .mdb, jet4.0, no access given table tblJob with field JobNumber text(10) 'The example I had to go by 'INSERT INTO tblCustomers (CustomerID, , )
6
3720
by: lenygold via DBMonster.com | last post by:
Hi everybody: What is the best way to I have 10 tables with similar INSERT requiremnts. INSERT INTO ACSB.VAATAFAE WITH AA(AA_TIN, AA_FILE_SOURCE_CD, .AA_TIN_TYP) AS ( SELECT AA_TIN, AA_FILE_SOURCE_CD, .AA_TIN_TYP FROM VAATAFAA WHERE AB_TP_ACNT_STAT_CD <0),
24
7146
by: Henry J. | last post by:
My app needs to insert thousand value rows into a mostly empty table (data are read from a file). I can either use inserts, or use merge. The advantage of using merge is that in the few cases where the table is not empty, it can take care of the updating part, which makes the app cleaner. However, my concern is the merge state would slow dowm the insertion of new data, since in most cases the table is empty. So my questions (before I...
1
1811
by: Mike1961 | last post by:
Hi all. I have problem with this asp code: strSplitDati = Split(request.Form("dati"), ",") for i = LBound(strSplitDati) to (INT(UBound(strSplitDati)/4)-1)*4 step 4 strSql = " INSERT INTO "
1
2649
by: EJO | last post by:
with sql 2000 enterprise Trying to build a stored procedure that will take the rows of a parent table, insert them into another table as well as the rows from a child table to insert into another table and be able to maintain the relationships between the parent/child rows of the new records. Something like old_id new_id
0
10008
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9959
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8833
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7381
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6651
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5279
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3929
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3532
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2806
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.