Viewing 15 posts - 5,611 through 5,625 (of 6,036 total)
Who did tell you datetime is the same as varchar?
Why are you trying to use varchar functions for datetime values?
There is a UDF to solve the problem:
IF EXISTS (SELECT...
February 14, 2006 at 9:35 pm
Try this:
SELECT TOP 255
Identity (int, 1,1) as i
INTO #Numbers
from syscolumns C1, syscolumns C2
declare @Chars table (ToRemove int)
INSERT INTO @Chars (ToRemove)
select i from #NUMBERS
where CHAR(i) not like...
February 14, 2006 at 7:38 pm
It's not hard. ![]()
Just right-click on QA on table DR, select "Script Object into Clipboard as -> Insert" and paste it here.
February 14, 2006 at 5:14 pm
Third time:
Can you provide complete INSERT statement?
INSERT
INTO DR ( <columns list> )
February 14, 2006 at 4:35 pm
Once again:
INSERT INTO DR ( <columns list> )
Can you provide complete INSERT statement?
February 14, 2006 at 3:22 pm
Everytime you run objRs.Open strSQL, objCn you open new connection.
#table exists only within connection scope. As soon as you close connection (objRs.Open strSQL, objCn finished) #Table is dropped...
February 14, 2006 at 2:35 pm
What you suppose to put in WHERE clause if you don't know which table you are querying?
February 14, 2006 at 2:11 pm
INSERT INTO DR
Can you continue with columns list for the table?
February 14, 2006 at 1:34 pm
It must be table like this:
dbo.PriceList (
LimitId int,
CurrencyId int,
Price money)
And 2 tables for descriptions:
dbo.PriceLimit (
Id int
LowLimit int,
HighLimit)
dbo.Currency (
Id int,
CurrencyName nvarchar(50),
CurencyCode char(3),
... whatever you need to describe currencies, e.g. currency symbol
)
And...
February 13, 2006 at 9:31 pm
It definitely must be not one table.
No doubt you will have repeating values for [Thread] , [Logger], [Principal] , [Application] , [SourceIP] , [DestinationIP] , [IntermediateIP] , [UserAgent] , [Event] , [MethodName], [UserName].
And it's times...
February 13, 2006 at 8:46 pm
What do you mean "does not work"?
What's an error?
February 9, 2006 at 4:22 pm
Do you have in this statement
SELECT col1, col2, col3,....... col100 ?
February 9, 2006 at 4:18 pm
Do you have a SQL statement for this?
Can you add WHERE .. IS NOT NULL to this?
February 9, 2006 at 3:49 pm
Do you insert that staging dataset into any actual database after all?
February 9, 2006 at 3:46 pm
Viewing 15 posts - 5,611 through 5,625 (of 6,036 total)