|
I'm looking for a command that will compress every folder within a directory separately with the name of each archive reflecting the original folder name. I know that
tar czvf example.tar.gz example/
will compress an entire folder. However, I have not...
Started by undoIT on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A.tar.gz would contain x and all....
|-- a | `-- x |-- b `-- c
Without -maxdepth 1 you would get a.tar.gz and a/x.tar.gz .
Consider the directory structure:.
Find -mindepth 1 -maxdepth 1 -type d -exec tar czf {}.tar.gz {} \;
Note that I used -maxdepth 1 .
|
|
My Xpress mail is downloading emails to my BlackJackII BUT only emails in the Bulk or spam folder. How can I get it to download ONLY the emails from my inbox and NOT the emails from the Bulk folder?
Started by MeauxTigers on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at att):
Is that accurate?.
It sounds like you are wanting Xpressmail to replicate whats in your outlook inbox after your outlook mail filters have been run .
|
|
I have Xpress Mail setup on my Blackjack and use Yahoo to host my company domain and email. XPress Mail works great with one HUGE exception. It does not download from the "Inbox", it only downloads emails to my phone from the "Bulk" or spam folder. HELP...
Started by MeauxTigers on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at att):
Are you using the desktop connector software in conjuntion with the device client or are you only running the stand-alone device client? .
|
Ask your Facebook Friends
|
I've got a new PC and have copied my CD database successfully, but the image path still points to the path on the old PC, which doesn't exist on the new PC. Is there an easy way to update the path on all CDs at once, without having to update each one ...
Started by ChrisD on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at collectorz):
Just use Tools / Maintenance / Update File Links.
|
|
I'm fairly new to SQL Server.
I'm trying to bulk insert into a table, using the command in SQL Server Management Studio (2005):
BULK INSERT Table1 FROM 'c:\text.txt' WITH (FIELDTERMINATOR = '|')
I get the error:
Msg 4860, Level 16, State 1, Line 1 Cannot...
Started by Jordan on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If you file system, to a folder that the account under which the SQL service is running has write permission have the program run a bulk....
Drive of your SQL server, then you can just copy the file over before running the bulk insert.
|
|
I am Bulk creating AD users from the commandline (dsadd) and whilst doing so am setting the homedir and homedrv to a DFS location. I observe when I create the user with all these settings via the GUI (dsa.msc) that the homedrv gets created on the DFS ...
Started by Neil on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
For....
One thing about the Home Folder, and that it's not really intended to be used in a fully native AD implementation) and use Folder Redirection with Group Policies instead.
The web for user creation, but have a look here to get started .
|
|
I need to import the data form .csv file into the database table (MS SQL Server 2005). SQL BULK INSERT seems like a good option, but the problem is that my DB server is not on the same box as my WEB server. This question describes the same issue, however...
Started by roman m on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It: http://www.ayende.com/blog
The group lists have some discussions about it, I actually added bulk.
|
|
Hi!,
I´m having trouble with bulk insert a file that contains a field in data type text, and it holds enters and the delimiter for the fields are pipes "|" and the row terminator is "|\n"
I get an error of truncation for the fields next to the text field...
Started by Arturo Caballero on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
FROM OPENROWSET( BULK '\\folder\file.txt' , FORMATFILE = '\\folder\file.fmt' ) a
varchar(12) , modify_user varchar(12) ) BULK INSERT #rawdata FROM 'C:\temp\file.txt) , modify_date varchar(32) , create_user varchar(12) ,....
|
|
Using the table structure below how would I create a bcp bulk insert that would handle the XML data. It is important that this is run from command line.
CREATE TABLE [dbo].[MyTable]( [Id] [uniqueidentifier] NOT NULL DEFAULT (newid()), [MyXmlField] [xml...
Started by Burt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, you can specify the maximum number of errors allowed with the –m like
bcp database.dbo.MyTable in "C:\folder\xmlfile.xml" -c -T
-c Performs the operation using the bulk-copy operation using the....
For the bulk operation.
|
|
I'm about to have to rewrite some rather old code using SQL Server's BULK INSERT command because the schema has changed, and it occurred to me that maybe I should think about switching to a stored procedure with a TVP instead, but I'm wondering what effect...
Started by Aaronaught on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You may find that tempdb still gets hit using .NET, but the approach that I've taken to optimise previous solutions was to do a bulk load of data experience with TVP yet, however there....
I think I'd still stick with a bulk insert approach.
|