Viewing 15 posts - 886 through 900 (of 1,186 total)
Unfortunately, that does sound reasonable Sue. I haven't reviewed BCP in awhile. Is there a way to specify server like -S[Spec8\Inst2]???
July 30, 2004 at 4:15 pm
This will give you the 1st entry made in the diary per person in the People table. You will need to modify the VIEW to use your table fields
CREATE VIEW...
July 30, 2004 at 9:49 am
I would create an NT Group and assign any/all the users that MIGHT potentially do this to the NT group. Then assign the appropriate permissions to the NT group and...
July 30, 2004 at 5:08 am
As you walk the temp table and build the @Var you can build in your formatting as you go. Then you could EXPORT the HEADER and DETAIL information
July 29, 2004 at 4:04 pm
I had to find SOMETHING to get you on
You are always a great sounding...
July 29, 2004 at 4:01 pm
Sue,
I have gotten lazy and have done it through EM. Through EM can you see the tables/views?
Try the following: CREATE a table that ONLY exists in your spec5 system. ...
July 29, 2004 at 3:59 pm
Unfortunately for you, you are doing nothing incorrect. At this time (haven't tried with SQL 2K5) you can't get there from here. The IN clause doesn't know how to interpret...
July 29, 2004 at 12:03 pm
Are you connected via QA to the main instance or the named instance?? I have several linked servers setup against named instances and use the following context SELECT * FROM...
July 29, 2004 at 12:00 pm
Why not create 2 different NT Groups and assign the users to one or the other? Inside SQL add the group(s) and then assign the permissions at the group level...
July 29, 2004 at 11:54 am
You may want to research Erwin or System Architect. One of them may work for you
July 29, 2004 at 6:55 am
How bout...
UPDATE a SET a.sno = 3
FROM test1 a
July 29, 2004 at 6:54 am
There are a bunch of different softwares out there i.e. Veritas Backup EXEC, Veritas NetBackup, Tripoli (I think), Harbor, etc.. I even think one of the sponsors here is SQL...
July 29, 2004 at 5:32 am
As long as the users are not a part of the dbo group like Jonathan stated CREATE TABLE and explicitly provide the users name as owner. Then in your sp...
July 29, 2004 at 5:24 am
Sounds like the following may work:
SELECT [Name], '1900-01-01' ProcessedDtTm INTO #tmpTable
FROM Country_Master
WHERE [id] < 3
Then you would need to "walk" the #tmpTable for the 1st instance WHERE the record was not processed...
July 29, 2004 at 5:20 am
I just installed it yesterday and find it VERY pretty... (but can they fight) (had to add the dirty dozen ref.). I have to get used to the new way...
July 27, 2004 at 4:11 pm
Viewing 15 posts - 886 through 900 (of 1,186 total)