Viewing 15 posts - 121 through 135 (of 270 total)
So how do I check my index type ? ( ie I have a combo field primary key), if its not there, how do I cluster this index ???
April 30, 2010 at 12:55 am
Thanks..
I thought a primary key was a clustered index ??
Is it not ??
if not whats the code for that type of index on a field combo ??
April 30, 2010 at 12:00 am
Lynn,
I have found what I need here:
April 29, 2010 at 2:54 pm
How could you be possible be confused.
My first post.
I wish to put data into a table I defined.
Then I wish to read data out of the table.
I wish to store...
April 29, 2010 at 1:59 pm
Lynn,
Can you do this in TSQL
Copy this URL into browser address bar:
The result is a CSV file with: Date, O,H,L,C,V,AdjC records.
I read this into a vb.net asp.net...
April 29, 2010 at 12:52 am
Thanks Lynn, I should be ok now. Will work on it tomorrow.:-):-):-)
April 28, 2010 at 11:14 pm
WOW thanks, I have the function split.
HOW can I get this result.
DECLARE @Symbol VARCHAR(20)
DECLARE @CreatedON DATETIME
SET @Symbol ='MSFT'
SET @CreatedON = getutcdate()
So I get a final result set like this...
April 28, 2010 at 11:07 pm
Well its one table function that can handle one string at a time, no matter the number of records in the string
NOTE: This is one record..and it has one...
April 28, 2010 at 10:39 pm
The data is not imported or anything like that, it will be passed down from the client via store procedure parameter.
So if you can work with the @str1 and @str2...
April 28, 2010 at 10:25 pm
More errors in code ..
My orginal table was like this:
CREATE TABLE [dbo].[DIM_OHLC_Xml](
[Symbol] [varchar](50) NOT NULL,
...
April 28, 2010 at 6:58 pm
I get error with this code..Invalid object name 'record'.
Its part of the insert code that was provided. The where clause is important to ensure a record is not load...
April 28, 2010 at 6:39 pm
I wish to hold a data dump
for 1000 symbols with 1000's of records
In one table row.
April 28, 2010 at 6:36 pm
.."Is the symbol column supposed to be IN the xml snippet, or - outside of the XMl, in the outer table that holds the XML column? It changes how you...
April 28, 2010 at 4:50 pm
Viewing 15 posts - 121 through 135 (of 270 total)