Viewing 15 posts - 2,071 through 2,085 (of 7,429 total)
If not then you will have to do a restore of the last good full backup and then apply TL log backups if you have them (which if set to...
March 26, 2004 at 8:19 am
I always thought BOL in that article was fairly straight forward personally. However, could you post what you were told for anyone else looking for a similar explination it will...
March 26, 2004 at 8:14 am
With regards to dates 0 is 1/1/1900.
1) Yes to an extent you can subtract from 0.
2) 1250 represent the number of mon ths that have occurred since 1/1/1900.
So by...
March 26, 2004 at 6:25 am
Yes that is right. The reason is only one thread at a time can be processed per processor (except with hyperthreaded cpu's) so for each to run the CPU has...
March 26, 2004 at 6:08 am
This is the best way. I see a lot of folks do a look in sysobjects for the temp table name but if on another connection the name is in...
March 26, 2004 at 5:14 am
March 26, 2004 at 5:04 am
here this should help
backup database northwind
to disk='c:\n1.bak', disk='c:\n2.bak'
with init, name='test'
March 26, 2004 at 4:48 am
Glad to hear, I was just banging my head on FoxPro there.
March 25, 2004 at 6:52 pm
I don't use FoxPro myself but can you post the few lines before and after this so I can see if I can figure it out? Otherwise Stored Procedure may...
March 25, 2004 at 6:45 pm
Try my query in QA and see if it works. If does then it may be another foxpro limitation you hit. I would then consider wrapping logic in SP and...
March 25, 2004 at 6:42 pm
You don't have any words in you error statement such as
DON'T
HAVEN'T
HASN'T
or other ' containing word do you?
And what laguage are you using to write the errors to the ODBC connection?...
March 25, 2004 at 6:41 pm
Because of the way exists works with regards to each record entering the buffer it will take a long time on large datasets.
March 25, 2004 at 6:37 pm
DId it say where the error was as I am working on notepad not QA right now and no test system here.
March 25, 2004 at 6:36 pm
Sure first the subquery
SELECT
x2.master,
x2.type t1,
x3.type t2
FROM
tblX x2
INNER JOIN
tblX x3
ON
x2.master = x3.master
WHERE
x2.type = 'avail' and
x3.type = 'oper'
Here I am join all master...
March 25, 2004 at 6:32 pm
Viewing 15 posts - 2,071 through 2,085 (of 7,429 total)