Questions tagged [junction]

A junction (also called a soft link) is a symbolic link of a special type of file that contains a reference to another file or directory. Junctions can link directories located on different local volumes on the same computer. Otherwise, junctions operate identically to hard links. Junctions are implemented through reparse points.

120 questions
0
votes
0 answers

in Windows, Junctioning a Folder and then Symbiotic Link why is not working?

I am trying to make this work: I created a Junction folder (using the mklink /J command) to a Z: Drive pointing to FolderA on a C: drive. Then I created several HardLinks (mklink /H command) inside another C:drive folder (We're calling name…
0
votes
0 answers

How do I check that a junction has a valid destination in VBScript?

The following DOS commands create a junction (called Source) pointing to a folder (called Destination) which no longer exists: mkdir Destination mklink /J Source Destination rd Destination I'm currently using the following VBScript to verify that…
Richard
  • 1,471
  • 7
  • 23
  • 47
0
votes
0 answers

CRUD in PHP with junction table using SQL

I have 2 tables in my database: companies and employees. Each company can have multiple employees and each employee can work at multiple companies. Therefore I need a many-to-many relational table called companies_employees. I think I understand the…
Alex Jolley
  • 11
  • 1
  • 2
0
votes
0 answers

One file at multiple location in windows

Is it possible to have one file in two or more locations (not copy, but same file)? In workplace, depending on department, we have different shares, and we sometimes need same files (informations in excel). That file need to be accessible in all…
0
votes
0 answers

Specifying many to many realtionship in Entity framework, Webforms

I have to classes: public class Subject { [Key] public int SubjectID { get; set; } public string SubjectName { get; set; } public virtual ICollection Teachers { get; set; } } and public class Teacher { [Key] …
Noctix
  • 33
  • 1
  • 6
0
votes
0 answers

Windows directory juction: no files are copied via network access

I have a problem with file storage organization. There is a network of Windows 7 and Windows XP computers. One of them is a file storage server. Software packs are located on the storage server. Each software pack includes 1. active folder; 1. some…
and1er
  • 749
  • 8
  • 18
0
votes
2 answers

MySql - Avoid SET() using junction and foreign keys

So here is the problem : I have a table "Members" with members and their attributes (name, birthday, mail, etc.) These members may belong to groups (let's say there are 3 groups), from none to all of them. And these groups are referenced in a table…
Mncc
  • 15
  • 6
0
votes
1 answer

Yii2 relations with junction table

I have free tables: user, book, user_book, offers user table has method: public function getBooks() { return $this->hasMany(UserBook::className(), ['user_id' => 'id']); } user_book table has two fields: user_id, book_id; and…
Roboto6_1on
  • 315
  • 4
  • 20
0
votes
0 answers

Fully qualified path for a folder

Using this code Dim fo As Scripting.Folder Set fo = fso.GetFolder(m_sFolder) Dim nSubfolder As Scripting.Folder For Each nSubfolder In fo.SubFolders Debug.Print "Folder " & fo.Path & " has subfolder " & nSubfolder Next ... I get the folder…
tmighty
  • 10,734
  • 21
  • 104
  • 218
0
votes
1 answer

Yii2 Junction table gridview display issue

I am trying to display the data into a GridView using a Junction table via many-to-many relation. While creating the one-to-many relation its working fine. I already have tried some of the posted questions for this issue but couldn't find what I am…
Mr.Singh
  • 1,421
  • 6
  • 21
  • 46
0
votes
1 answer

WebSEAL to WebSEAL junction

I have created WebSEAL to WebSEAL junction (EAI authentication enabled). Facing certificate issues, while creating the junction, application page displays third party server error. Incorporated all root chain certificates. Does WebSEAL to WebSEAL…
Rekha
  • 1
  • 2
0
votes
1 answer

PHP, MySQL Junction Table displays information incorrectly

My tables are as follows: person2: personID validPositions: positionID, positionDesc personPositions: personID, positionID I want to be able to display a person with their multiple positions (some may only have one position) on one line. Example:…
J Adams
  • 17
  • 4
0
votes
1 answer

How to do a nested query in SOQL? Salesforce

I have 2 custom objects in Salesforce.com One is PersonAccount and one is Accounts. Within the default "Account" object I have a field called user_id PersonAccount acts as a junction table to link "Account" to Accounts PersonAccount does a lookup…
willxj
  • 43
  • 1
  • 7
0
votes
1 answer

SQL junction query

I'm very new to SQL and I'trying to do a query on the data that I've entered to find bottles of wine sold by Danmurphys that are less than $20. The query I've composed is down the bottom but the syntax isn't right and I'm not sure what I'm doing…
0
votes
1 answer

Using a link/junction between web servers

I am trying to figure a way of connecting 2 web server's file systems together so they can access each others files natively. The servers are Windows 2012 and connected directly to the internet via public IPs. One server will be for storing large…
CrazyChris
  • 147
  • 1
  • 2
  • 13