Viewing 15 posts - 17,956 through 17,970 (of 18,926 total)
In case you didn't notice I was KIDDING about the shrine. All I need as a temple
.
April 29, 2005 at 7:49 am
SELECT dbo.sysobjects.name AS TableName, dbo.syscolumns.*
FROM dbo.sysobjects INNER JOIN
...
April 29, 2005 at 7:48 am
God!!! I just realized how much of bunch of Geeks we are....
April 29, 2005 at 7:45 am
2 things come to mind :
1 - Is it possible to merge the 3 lookup tables into one (if it makes sens)?
2 - You can make 3 derieved table...
April 29, 2005 at 7:44 am
I can't talk for USA, but here in canada, the standard when you start is 2 weeks, then 3 after 2 years, then 4 after 5 years. I know...
April 29, 2005 at 7:36 am
insert into record0
select * from record001
where
left(FirstCol, 2) = '00' AND
(
agency is null
or trans_id is null
or ISNUMERIC(trans_id)=0
or isnumeric(accounts_trans)=0
or...
April 29, 2005 at 7:20 am
Thanx David... Always something else to learn
.
April 29, 2005 at 7:05 am
I have no table worthy of that term... The biggest table I have only has 20k rows... nothing near the million..
April 29, 2005 at 6:57 am
I just like to help... I don't need no shrine.
April 29, 2005 at 6:40 am
Basically it means that you install 1 server with the cd. Somewhere in the install you'll have an option to save the install to a script. Once the...
April 29, 2005 at 6:36 am
Hey Frank.. you don't like to use a numbers table for something like this?
April 29, 2005 at 6:32 am
I just retested my idea and found a few gotchas :
use NorthWind
GO
Select object_id('##temp')
--null
GO
create table ##temp
(
a varchar(10) not null
)
GO
Select* from ##temp
--empty set
Select object_id('##temp')
--null
USE tempdb
Select object_id('##temp')
--1222255034
GO
drop table ##temp
go
It seems you must...
April 29, 2005 at 6:23 am
Viewing 15 posts - 17,956 through 17,970 (of 18,926 total)