Quickly check whether file name is in column in an SQL Table and move to new folder
up vote
0
down vote
favorite
I have a table that in one of the columns exists a list of file names. The names comes from other tables and the files in a folder.
Not all the files are used, may be attached to parcels that no longer are active. My list is of only the active parcels.
After creating the table I want to go through the folder of files and move the files that are being used(exist in the table) to another folder.
Currently I iterate the files in the folder and test whether each file one at a time returns a record or not using an SQL command.
This works, but the consistent checking back to the database is slow.
Here is the code as it sits now:
param(
[string] $src,
[string] $dest,
[string] $table
)
$sql_instance_name = 'db'
$db_name = 'DB2'
$sql_user = 'user'
$sql_user_pswd = 'password'
Get-ChildItem -Path $src -Recurse -File | ForEach-Object {
$query = "select * from " + $table + " WHERE FILE_NAME Like '" + $_.BaseName + $_.Extension + "'"
#write-output $query
$expcsv = invoke-sqlcmd -Username $sql_user -PASSWORD $sql_user_pswd -Database $db_name -Query $query -serverinstance $sql_instance_name
if($expcsv -ne $null)
{
$nextName = Join-Path -Path $dest ( $_.BaseName + $_.EXTENSION)
Write-Output $nextName
$_ | Move-Item -Destination $nextName
}
}
Is there a way to load the data into memory, and search that instead of going back and forth from the database? I have to assume it would be quicker.
sql-server powershell
add a comment |
up vote
0
down vote
favorite
I have a table that in one of the columns exists a list of file names. The names comes from other tables and the files in a folder.
Not all the files are used, may be attached to parcels that no longer are active. My list is of only the active parcels.
After creating the table I want to go through the folder of files and move the files that are being used(exist in the table) to another folder.
Currently I iterate the files in the folder and test whether each file one at a time returns a record or not using an SQL command.
This works, but the consistent checking back to the database is slow.
Here is the code as it sits now:
param(
[string] $src,
[string] $dest,
[string] $table
)
$sql_instance_name = 'db'
$db_name = 'DB2'
$sql_user = 'user'
$sql_user_pswd = 'password'
Get-ChildItem -Path $src -Recurse -File | ForEach-Object {
$query = "select * from " + $table + " WHERE FILE_NAME Like '" + $_.BaseName + $_.Extension + "'"
#write-output $query
$expcsv = invoke-sqlcmd -Username $sql_user -PASSWORD $sql_user_pswd -Database $db_name -Query $query -serverinstance $sql_instance_name
if($expcsv -ne $null)
{
$nextName = Join-Path -Path $dest ( $_.BaseName + $_.EXTENSION)
Write-Output $nextName
$_ | Move-Item -Destination $nextName
}
}
Is there a way to load the data into memory, and search that instead of going back and forth from the database? I have to assume it would be quicker.
sql-server powershell
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a table that in one of the columns exists a list of file names. The names comes from other tables and the files in a folder.
Not all the files are used, may be attached to parcels that no longer are active. My list is of only the active parcels.
After creating the table I want to go through the folder of files and move the files that are being used(exist in the table) to another folder.
Currently I iterate the files in the folder and test whether each file one at a time returns a record or not using an SQL command.
This works, but the consistent checking back to the database is slow.
Here is the code as it sits now:
param(
[string] $src,
[string] $dest,
[string] $table
)
$sql_instance_name = 'db'
$db_name = 'DB2'
$sql_user = 'user'
$sql_user_pswd = 'password'
Get-ChildItem -Path $src -Recurse -File | ForEach-Object {
$query = "select * from " + $table + " WHERE FILE_NAME Like '" + $_.BaseName + $_.Extension + "'"
#write-output $query
$expcsv = invoke-sqlcmd -Username $sql_user -PASSWORD $sql_user_pswd -Database $db_name -Query $query -serverinstance $sql_instance_name
if($expcsv -ne $null)
{
$nextName = Join-Path -Path $dest ( $_.BaseName + $_.EXTENSION)
Write-Output $nextName
$_ | Move-Item -Destination $nextName
}
}
Is there a way to load the data into memory, and search that instead of going back and forth from the database? I have to assume it would be quicker.
sql-server powershell
I have a table that in one of the columns exists a list of file names. The names comes from other tables and the files in a folder.
Not all the files are used, may be attached to parcels that no longer are active. My list is of only the active parcels.
After creating the table I want to go through the folder of files and move the files that are being used(exist in the table) to another folder.
Currently I iterate the files in the folder and test whether each file one at a time returns a record or not using an SQL command.
This works, but the consistent checking back to the database is slow.
Here is the code as it sits now:
param(
[string] $src,
[string] $dest,
[string] $table
)
$sql_instance_name = 'db'
$db_name = 'DB2'
$sql_user = 'user'
$sql_user_pswd = 'password'
Get-ChildItem -Path $src -Recurse -File | ForEach-Object {
$query = "select * from " + $table + " WHERE FILE_NAME Like '" + $_.BaseName + $_.Extension + "'"
#write-output $query
$expcsv = invoke-sqlcmd -Username $sql_user -PASSWORD $sql_user_pswd -Database $db_name -Query $query -serverinstance $sql_instance_name
if($expcsv -ne $null)
{
$nextName = Join-Path -Path $dest ( $_.BaseName + $_.EXTENSION)
Write-Output $nextName
$_ | Move-Item -Destination $nextName
}
}
Is there a way to load the data into memory, and search that instead of going back and forth from the database? I have to assume it would be quicker.
sql-server powershell
sql-server powershell
edited 53 mins ago
Jamal♦
30.2k11115226
30.2k11115226
asked 6 hours ago
Scott Craner
20815
20815
add a comment |
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
});
});
}, "mathjax-editing");
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "196"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f209567%2fquickly-check-whether-file-name-is-in-column-in-an-sql-table-and-move-to-new-fol%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Code Review Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f209567%2fquickly-check-whether-file-name-is-in-column-in-an-sql-table-and-move-to-new-fol%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown