Viewing 15 posts - 7,021 through 7,035 (of 7,429 total)
If you are referring to a lost server that had to be restored and you have the DB file in question, if it was not corrupted you may be able...
March 4, 2002 at 5:38 pm
Ok guys does this not sound simply like this.
SELECT StatusLog.LogID, StatusLog.Status, StatusLog.StatusDate FROM StatusLog
INNER JOIN
(SELECT LogID, Max(StatusDate) as MaxStatusDate FROM StatusLog GROUP BY LogID) AS MaxTbl
ON
StatusLog.LogID = MaxTbl.LogID...
March 4, 2002 at 5:21 pm
I believe if I remember correctly that you cannot disable netbios requests and that it is always check first as this is the provider that will tell about shares and...
March 4, 2002 at 10:28 am
For SQL 7
7.00.623 if SQL Server 7.0 with no service pack applied
7.00.699 if SQL Server 7.0 Service Pack 1
7.00.842 if SQL...
March 4, 2002 at 10:19 am
Try this,
CASE
WHEN datediff(month,@as_of_date, #lease_scheds.end_date) < 0 THEN 0 ELSE datediff(month,@as_of_date, #lease_scheds.end_date)
END
By using case I tell the value to be 0 when less than 0 otherwise print the value.
"Don't roll...
March 4, 2002 at 9:38 am
Unless you keep really good documentation.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
March 4, 2002 at 9:30 am
Take a look at the following KB Article on MS site http://support.microsoft.com/default.aspx?scid=kb;en-us;Q276041 which is fixed with SP3 on SQL 7. Tell me if it does not apply to you but...
March 4, 2002 at 7:59 am
Ok I understand now, let us know if the other works. If not you may be able to pull it off with active script in DTS to handle the import,...
March 4, 2002 at 7:44 am
Straight foward and giving in both formats to show the implimentation needs was a nice touch.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston...
March 4, 2002 at 4:46 am
It requires that the base pages themselves use Windows Authentication for you to be able to use a trusted connection. That is because the user is otherwise passed as Anonymous...
March 4, 2002 at 4:32 am
No not really, could have been a corruption in the configuration that reset when you moved off TCP/IP then back on, but I would have to dig in the registry...
March 3, 2002 at 5:39 pm
When you get to the autchenication screen there is a button for client config. Did you check in there to make sure that it is deffiently using the TCP/IP network...
March 3, 2002 at 2:21 pm
Ok let me ask this. Are you saying that you have multiple columns of data and the overall width is 20000 bytes which is well over the 8000 byte limit...
March 3, 2002 at 2:00 pm
Actually this is default (at least that is whjat I thought and have seen from my experience). But if you need to increase or decrease you right click in the...
March 3, 2002 at 1:57 pm
Crude forgot to put in, this is done this way for several reasons including being able to restore to another server from backup or straight file since the logins in...
March 3, 2002 at 1:53 pm
Viewing 15 posts - 7,021 through 7,035 (of 7,429 total)