It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I tried resetting my R using the rm comand but now it does not recognize the csv import code. I know the code is right because I gave up and started using my laptop. However, now my R on my desktop is completely useless and I'd rather it not be that way. I have deleted and reinstalled R multiple times and it still refuses to work. Any suggestions?
There is potential for corruption of the default saved workspace file which is named .Rdata. In both Windows and MacOS, this file is by default invisible (aka a dot-file or system-file). The default history file, .Rhistory is also susceptible to corruption. If this is your problem you need to use you system functions from the command line to delete to corrupt files and then restart R.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
R 2.15.2 sqlFetch() on Win7 OS is terminating the R session.
However, sqlQuery() function returns the values properly with termination.
Please, help me resolving the issue.
There are many places that this could be going wrong, so you need to try and isolate the problem.
Are you passing the same SQL to sqlFetch as you are to sqlQuery?
Is the connection handle (from odbcConnect) the same?
Can you retrieve just one row? (Pass max = 1 to sqlFetch?)
Do you have the correct permissions on your database?
Can you retrieve data from a local instance of the database?
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am using Tridion 2011. The problem is- whenever i try to publish a page,its publishing gets failed. When I checked Publish Transaction, it shows that publishing is getting failed in Deployment phase.
Can anyone suggest what might be the issue and how to correct it?
Thanks.
There can be literally a million reasons why deployment fails:
Database is not connected
Database is mis-configured
Ran out of disk space
Password is wrong
User running deployer doesn't have permissions to write to file system
and many many more.
The easiest way to figure out what's wrong is to look at the logs that your deployer provides, you're likely to find the error in cd_core_.log or cd_deployer_.log. Check logback.xml for the location of these files.
If you can get the error from these files and post it here we may have better suggestions for you.
Try giving permissions to user -NetworkService on folder where the package is deployed.
Also could you please specify the detailed error?
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to import excel files into SQL server 2008 SSMS manually and only load those items into the database which are new not the existing ones. please find me SQL Query for the same.
I would suggest that you can use SSIS in this situation. I guess there is no straight forward query to handle this situation. First you need to load data into the staging table and then you have to move the new records only.
Please refer here for T-SQL command
Import Excel spreadsheet columns into SQL Server database
You can use OPENROWSET function shown here
http://beyondrelational.com/modules/2/blogs/70/posts/10846/export-to-excel-with-column-names.aspx
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to open a file in the folder (/root/Desktop/HTMLFiles/sample.html) as http://localhost/HTMLFiles/sample.html. I'm using a Linux machine.
Can anyone help me?
Thanks in advance,
Gnik
place HTMLFiles under your webroot. If you dont wnat to do that check https://serverfault.com/questions/295975/add-a-directory-to-the-apache-web-root
You most certainly have python installed. I would use the simple HTTP server bundled with Python:
python -m SimpleHTTPServer
Just navigate to the directory you want to serve files from and run that command.
You will be able to see the content at http://127.0.0.1:8000 or http://localhost:8000
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I added dlls. My project get's updated. But My team could not get the updatesfrom Source control. What should I do? Please help
I'm assuming you mean that the project isn't updated in source control.
Are you sure you saved your project's changes? Use Ctrl+Shift+S to save everything (including solution/project files)
Try committing again then. Check the log in your source control tool to make sure that the project files were actually updated in the repository