Viewing 15 posts - 1 through 15 (of 34 total)
Can you explain?
"Auto shrink is a database option that is used to conserve disk space. It creates a thread that runs periodically to detect when the database has...
June 5, 2020 at 9:39 pm
CELKO (8/4/2016)
Nusc (7/31/2016)
Year , name,...
August 4, 2016 at 5:07 pm
Does anyone know a good reference for updating tables for left outer joins?
Do I create the column I wish to store before executing the left outer join then populate the...
August 3, 2016 at 7:57 pm
CREATE TABLE hurracane(
Year VARCHAR(4) NOT NULL
,Name VARCHAR(10) NOT NULL
,Latitude VARCHAR(10) NOT...
August 3, 2016 at 7:26 pm
Spiff (8/3/2016)
Whatever mate. Goodnight.N.b. your coordinates ([COORDS]) should be long-lat for points. Might save you a few hours if you bother to read this.
You can easily change the...
August 3, 2016 at 3:50 pm
The script includes statements that removed the columns, all one needs is to run the script and that's it.
I was told to save the csv as a txt but it...
August 3, 2016 at 3:33 pm
Ok reset this thread.
Here is the data:
ftp://eclipse.ncdc.noaa.gov/pub/ibtracs/v03r08/wmo/csv/year/
I want to do the following as illustrated on the microsoft website:
add a line layer to map
https://msdn.microsoft.com/en-us/library/ee240828.aspx#LineLayer
They give an example...
August 3, 2016 at 3:04 pm
I get the result in the attached image.
I am pretty close to getting this done but my issue involves storing these tables into new tables. That's the biggest issue at...
August 3, 2016 at 2:51 pm
THe microsoft example can plot a path with 3 points
SELECT N'Path' AS Name, CAST('LINESTRING(
-76.5001866085881 42.4310489934743,
-76.4602850815536 43.4353224527794,
...
August 3, 2016 at 2:29 pm
Spiff (8/3/2016)
August 3, 2016 at 1:25 pm
If I insert that JOIN using:
WITH cte AS (JOIN STATEMENT)
I get the error:
The ORDER BY clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions, unless...
August 3, 2016 at 12:37 pm
Okay then going back to my previous attempt, how would I introduce the INSERT statement for this JOIN?
http://www.sqlservercentral.com/Forums/FindPost1806043.aspx
I asked how to update the table but then the discussion...
August 3, 2016 at 11:36 am
I get the same errors as I did with linestring in my previous attempts.
THe whole point of doing is this is to load this data into SSRS.
August 3, 2016 at 10:03 am
Okay it works so far. How do I save the output into the table so that I can load it in visual studio?
MY issue with using these geography statements is...
August 3, 2016 at 9:53 am
Spiff (8/3/2016)
August 3, 2016 at 9:41 am
Viewing 15 posts - 1 through 15 (of 34 total)