Viewing 10 posts - 1 through 10 (of 10 total)
Thanks!
I missed that you. I will keep to my origional way.
Have a good day.
July 20, 2022 at 9:27 am
Unfortunately it doesn't
It looks like this:
(6 row(s) affected)
-------------------------------------------------------------------
ONE
 ;
TWO
 ;
THREE
 ;
FOUR
 ;
FIVE
 ;
SIX
 ;
(1 row(s) affected)
The output is delivered to a VB.Net app which is saving the output to a...
March 28, 2013 at 5:16 pm
The output is:
ONE
 ; TWO
 ; THREE
 ; FOUR
 ; FIVE
 ; SIX
 ;
I want to have the following output:
ONE
TWO
THREE
FOUR
FIVE
Best,
Harry
March 28, 2013 at 5:07 pm
hi adi,
This is the result:
Major Error 0x80040E14, Minor Error 25501
> IF NOT EXISTS (SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'DELIVERYINTRIP'
AND COLUMN_NAME = 'PODID')
ALTER TABLE DELIVERYINTRIP ADD...
February 25, 2009 at 7:23 am
don't think so
October 2, 2008 at 8:32 am
it only works for sql2005 or higher
October 2, 2008 at 7:52 am
I'm using it this way on SQL 2005 Databases for version control:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[DatabaseDDLLogging](
[id] [uniqueidentifier] NOT NULL,
[EventType] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[PostTime] [datetime] NULL,
[SPID] [int] NULL,
[ServerName] [nvarchar](100)...
October 2, 2008 at 7:47 am
I think you don't need the temporary tables.
See if this works?
The only thing I'm not sure of is the DISTINCT in the HAVING statement.
SELECT DISTINCT PR.PrmLog_Acct_Code,
...
August 31, 2006 at 1:31 pm
An Identity for the BatchID doesn't work in my situation. The table is used for simulation purposes and a part of the records is deleted before each simulation run. An...
August 25, 2006 at 3:58 pm
I have a table with 1 fields as PK called [BatchID]
The application creating the new record should not be bothered with any logic. So I want to fill this field...
August 24, 2006 at 5:45 am
Viewing 10 posts - 1 through 10 (of 10 total)