Viewing 15 posts - 811 through 825 (of 992 total)
What I have done in the past for a similar situation....
You could set up an FTP server at your remote end (where you are) and set up a SQL Server Agent...
October 13, 2005 at 5:48 am
What about modifying the application name or hostname parameters in the OLEDB connection string? They are easily retrievable from SQL and needn't contain the data implied by their name -...
October 12, 2005 at 8:15 pm
This seems needlessly complex - I just made a UDF that recursively calls itself with more than 1 parameter in my temp database and it works fine?
Example (and it's a...
October 11, 2005 at 9:38 am
Well for 11, you might have to have a profiler trace with very particular filters running to catch such statements against your database.
For 12, I assume you mean recording say,...
October 11, 2005 at 4:11 am
Very good article - I have to implement something like this soon. Whilst I usually ensure that I do all data manipulation from apps via stored procedures, it would be...
October 10, 2005 at 8:44 am
What about....
select
RowID,
(
select value
from MetaValue MVI
where MVI.AttributeID = 1 and MVI.tableID = 1 and MVI.RowID = MV.RowID
) as ArtikelNr,
(
select value
from MetaValue MVI
...
October 7, 2005 at 9:07 pm
Yeah tis getting a bit tricky. Which way is the match going I got confused - although lack of sleep lately isn't helping! ...
October 6, 2005 at 8:44 pm
Do you mean that the variable @key, which is a varchar of sorts, would have several IDs in it such as
@key = '1, 2, 3, 4,...
October 5, 2005 at 12:40 am
What is he using to develop the app? If he has visual studio from microsoft, it comes with MSDE, etc which he can always use to develop against (does Vis...
October 5, 2005 at 12:39 am
That's an internal SQL error - you should send it to MS. Or do a quick google search on it.
October 5, 2005 at 12:36 am
Or, just take the SQL v7 file (just the .MDF), copy it to your new server and use
sp_attach_single_file_db to attach it and SQL will create a new log file for...
October 5, 2005 at 12:35 am
October 5, 2005 at 12:34 am
Yes, SQL Server lincensing (in 2000 anyway) is definitely on the "honour system". I think it probably has to be as it would almost be "unfair" for SQL to deny...
October 5, 2005 at 12:32 am
Maybe not having Exchange is the problem - if another app (such as SQL server) uses my Outlook via MAPI (as SQL does) to send an email message and Outlook...
October 5, 2005 at 12:31 am
I am not terribly familiar with how PHP works, apart from knowing that it looks a bit like PERL which was ugly to use!
October 5, 2005 at 12:28 am
Viewing 15 posts - 811 through 825 (of 992 total)