Viewing 15 posts - 136 through 150 (of 270 total)
Ok thanks you answered 1,2,4 for me,thanks.:-D
But you missed 3..
Once I have the @XML data in my XML field of my table.
I need to pull the data out so I...
April 28, 2010 at 4:38 pm
Sure whatever works..
So I just do
INSERT INTO dbo.DIM_OHLC_Xml (Symbol,CreatedOn,OHLC_XML)
SELECT
@symbol AS Symbol,
@CurrDate AS Currdate,
...
April 28, 2010 at 4:08 pm
Thanks..just what I need.
There is a method to my madness...:-)
April 12, 2010 at 1:07 pm
So is this the best method...after all the chatter..:cool:
DECLARE @iDate DATETIME,
@val INT
SET @iDate = '12/31/2010 01:25:35'
...
March 22, 2010 at 11:04 am
Whats with the ';' in the SQL statement
'2000-01-01');
???
I dont use ';' in SQL 2005, should I ??
March 21, 2010 at 11:29 am
You sent me on correct highway thanks...:-)
This is the code the will work for me..
DECLARE @iDate DATETIME,
@val INT
SET @iDate =...
March 18, 2010 at 11:10 pm
Wow.. I better retreat.:w00t:
Ok so I think I will change the field to DATETIME.
So how can i get this DATETIME field into a VARCHAR that looks like MM/dd/yyy
With out the...
March 17, 2010 at 11:44 pm
SSCrazy,
Yes I have now found how to run a .bak
BUt I had three questions, could you answer the three for me, thanks
March 17, 2010 at 4:42 pm
Ok I just wanted to see how to change it to SEEK but true, it may not be required for practical use.
February 9, 2010 at 10:45 pm
Are you pulling my legg...???
Sure I have one record of TEST data in the table.
But imaging 1000 records in the table and I want to get the top 120...
February 9, 2010 at 9:34 pm
I am after a execution performance that uses all SEEK scans for this stored procedure ( with test code post on this thread)..
ALTER PROCEDURE [dbo].[procTEST]
AS
BEGIN
SELECT TOP 120 A.[Page]
...
February 9, 2010 at 7:11 pm
.."And maintain a clustered index seek? "..
What does this mean??? Doesnt help me !:-)
February 9, 2010 at 6:43 pm
thanks..
Interesting...
HOW do I a SELECT TOP 120 * FROM <table> records on the BlogUserID auto field
????
February 9, 2010 at 5:51 pm
Viewing 15 posts - 136 through 150 (of 270 total)