I Can See Arkansas

"I Can See Arkansas" is a song recorded by Canadian country music artist Anne Murray. It was released in 1992 as the third single from her album Yes I Do. It peaked at number 9 on the RPM Country Tracks chart in July 1992.

"I Can See Arkansas"
Single by Anne Murray
from the album Yes I Do
Released1992
GenreCountry
Length4:10
LabelLiberty Records
Songwriter(s)James Nihan
Wood Newton
Producer(s)Jerry Crutchfield
Anne Murray singles chronology
"If I Ever See You Again"
(1991)
"I Can See Arkansas"
(1992)
"Make Love to Me"
(1993)

The song was originally recorded by Steve Wariner on his 1990 album Laredo. It was also recorded by David Ball on his 2004 album Freewheeler.

Chart performance

Chart (1992) Peak
position
Canada Country Tracks (RPM)[1] 9

Year-end charts

Chart (1991) Position
Canada Country Tracks (RPM)[2] 89
gollark: I tested four different compression algorithms and brotli did fairly well; I would have used zstandard but the node bindings for it are awful, and brotli actually did do better on small inputs.
gollark: For example, it stores created/updated timestamps in a way which allows them to be looked up more quickly, makes it faster to look up the latest revision of stuff, allows me to do compression (I implemented brotli compression to reduce storage requirements a lot), and allows revisions to have data and represent stuff other than "the page content changed".
gollark: The new version *is* better, even if it involves something like 70 lines more code.
gollark: I've reworked minoteaur's design a bit again because productivity is BEES and happens to other people.```sqlCREATE TABLE pages ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, updated INTEGER NOT NULL, content TEXT NOT NULL);``` I went from that small and thus uncool database thingy to this:```sqlCREATE TABLE versions ( vuuid TEXT PRIMARY KEY COLLATE BINARY, rawSize INTEGER NOT NULL, encoding TEXT, data BLOB NOT NULL);CREATE TABLE pages ( title TEXT PRIMARY KEY, created INTEGER NOT NULL, updated INTEGER NOT NULL, latestVersion TEXT NOT NULL REFERENCES versions(vuuid));CREATE TABLE revisions ( ruuid TEXT PRIMARY KEY COLLATE BINARY, page TEXT NOT NULL REFERENCES pages(title), timestamp INTEGER NOT NULL, type TEXT NOT NULL, data TEXT NOT NULL, -- JSON version TEXT NOT NULL REFERENCES versions(vuuid));CREATE INDEX revisions_page_ix ON revisions(page);```
gollark: Suspicious timing.

References

  1. "Top RPM Country Tracks: Issue 2013." RPM. Library and Archives Canada. July 4, 1992. Retrieved November 16, 2013.
  2. "RPM Top 100 Country Tracks of 1992". RPM. December 19, 1992. Retrieved November 16, 2013.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.