Viewing 15 posts - 241 through 255 (of 343 total)
This is kind of implied by what the others have said, so I apologize if it was obvious.
I was not apparent in your description when the full backups are performed....
June 2, 2003 at 10:23 am
Finding the tables is easy
select sc.name 'Column', so.name 'table'
from syscolumns sc
inner join sysobjects so on so.id = sc.id
where sc.name = 'Employee_ID'
The update could be handled in...
June 2, 2003 at 10:15 am
This is one of those difficult areas. To provide convenient service to your users, it is nice to be able to store the numbers. After all, the wallet...
May 27, 2003 at 8:42 am
Sure - I am sure you have already considered the performance and security issues. But as far as technology - no problem.
Guarddata-
May 23, 2003 at 2:35 pm
Sounds like one server is defined as NCHAR and the other as CHAR. The wide character format takes two bytes per character.
Guarddata-
May 23, 2003 at 2:31 pm
If this is a new column, you can modify your statement to be
ALTER TABLE CAN_MARKET_DATA ADD MRKT_DATA_SEQ [int] [identity(1,1)]
I don't know how to change an existing column.
Guarddata-
May 23, 2003 at 2:29 pm
If I understand your wishes, it seems like you want to use a subquery...
SELECT col1, col2, ( SELECT min(col3) from othertable where condition ) as col3
FROM maintable
WHERE condition
Is...
May 23, 2003 at 2:21 pm
I ran SQL on my laptop for over two years with a celeron processor and never had a stitch of trouble.
Guarddata-
May 23, 2003 at 8:21 am
We always use TINYINT. Probably a result of version 6.5 handling of the BIT datatype which had problems allowing further changes to the data structure. I agree with...
May 20, 2003 at 9:32 am
The main considerations for us have been size and randomness. Just make sure you don't put a clustered index on the GUID things have generally worked well for us.
Guarddata-
...
May 20, 2003 at 9:26 am
Thundr51
There may be an inadvertant typoe...try using abbreviations to make it easier to read.
SELECT TOP 100 PERCENT R.FULLNAME, SUM(S.BuyingUnits) AS buyingunits, COUNT(A.[Last])
AS signedapps
FROM dbo.Reps R
INNER JOIN Marketing.dbo.Seminar_Agents AG ON...
May 20, 2003 at 9:25 am
I am sure you have done this - so I apologize for suggesting some of the obvious...
If you copy the code directly into query analyzer from the stored procedure, it...
May 20, 2003 at 8:40 am
I do appreciate all the input. Looks like I need to spend a little time to learn more about OLAP.
Guarddata-
May 20, 2003 at 8:28 am
Wish I could remember the one that produced this a while ago. I can't take credit here.
If you have
DECLARE @numStr
SET @numStr = '345.2300'
then
SELECT @numStr = REPLACE( RTRIM( REPLACE( REPLACE(...
May 19, 2003 at 9:52 am
Works fine for me too. I converted both to the format of yyyy/mm/dd and mm/dd/yyyy. Both worked fine. Seems like the format of the short-date on your...
May 15, 2003 at 10:12 am
Viewing 15 posts - 241 through 255 (of 343 total)