Viewing 15 posts - 76 through 90 (of 196 total)
Yes,
A fairly complete example of one method to do so can be found here: http://www.sqlteam.com/item.asp?ItemID=19595
A google search on "SQL Server stored procedure run DTS" provides several other examples.
Hope this...
July 26, 2005 at 10:04 am
DECLARE @LiveRowCount BIGINT,
@SqlCmd NVARCHAR(4000)
SET @SqlCmd = 'SELECT @RowCount = COUNT(*) FROM ' + QUOTENAME(@MyTableName)
EXEC sp_executesql @SqlCmd, N'@RowCount BIGINT OUT', @LiveRowCount OUT
IF @LiveRowCount > 0
PRINT 'Row count =...
July 26, 2005 at 9:40 am
I am not an academic. However, in my spare time, I am currently researching/analyzing/asessing the ability of various DB engines to serve as an engine, or framework, for autonomous AI, particularly...
July 26, 2005 at 9:33 am
hmmmmm. while checking my post to make sure it wasn't truncated, I also noticed this...
SELECT @ITemplate = i.Template
, @IActionType = i.ActionType
, @ICustCounter = i.CustCounter
, @ProvisionSP = psp.ProvisionSP
, @Template =...
July 26, 2005 at 9:15 am
G'day,
I cannot claim to know exactly what the problem might be. However, for testing and debugging purposes, I would probably start by removing the join. Leave your initial select from...
July 26, 2005 at 9:09 am
Expanded version of the earlier example:
CREATE TABLE TestTable (DateColumn VARCHAR(255),
StatusColumn INT)
GO
INSERT INTO TestTable (DateColumn) SELECT '6 JUNE 2005 11:58'
INSERT INTO TestTable (DateColumn) SELECT '5 JUNE 2005 11:58'
INSERT INTO TestTable...
June 6, 2005 at 12:14 pm
Hi there,
Something like this might work.
CREATE TABLE TestTable (DateColumn VARCHAR(255),
StatusColumn INT)
GO
INSERT INTO TestTable (DateColumn) SELECT '6 JUNE 2005 11:58'
INSERT INTO TestTable (DateColumn) SELECT '1 JANUARY 2005 11:58'
GO
SELECT DATEDIFF(MONTH, CAST(DateColumn...
June 6, 2005 at 10:19 am
hmmmm... Not a lot of detail to work with.
Maybe the book "learning xml" will help. You can find a link here: http://www.amazon.com/exec/obidos/tg/detail/-/0596000464/102-8229627-2212925?v=glance
A few more details about what you...
May 23, 2005 at 2:49 pm
Michael,
Perhaps you could post your current conversion code? We may be able to spot the error.
Wayne
May 13, 2005 at 2:46 pm
G'day all,
Thank you for the responses so far. They are helpful.
I am currently scoping out a potential new product. Without going into too much detail, the development effort of the...
May 13, 2005 at 8:42 am
Hi there,
What type of DB is the proprietary structure using? DB2? xBase? Oracle?
The difficulty of porting the table strucutres depends on the current DB. Also depending on the source,...
April 29, 2005 at 8:42 am
Hi Dave,
A quick google search for "ZombieCheck" turned up exactly four hits. Based on the messages in your post, I suspect you may be dealing with the first one. It appears...
April 29, 2005 at 8:39 am
Hello again,
Can you please post the actual DDL for the tables? I'll generate some dummy data and post the working query(s).
Thanks
Wayne
April 28, 2005 at 3:38 pm
I apologize in advance if this set of questions takes the topic too far off track. We can easily take the conversations to a different thread if appropriate.
Excellent article. It is...
April 28, 2005 at 8:48 am
Viewing 15 posts - 76 through 90 (of 196 total)