Viewing 15 posts - 5,266 through 5,280 (of 5,356 total)
Hi Jeremy,
I just wanted to make aware of some pitfalls of dynamic SQL, because simply answer a question to use dynamic SQL implicates considerations on the aspects you've mentioned (eg....
May 16, 2003 at 3:00 am
Hi,
once again a topic on dynamic sql. For the pros and cons of this approach take a look at http://www.algonet.se/~sommar/dynamic_sql.html
Cheers,
Frank
May 16, 2003 at 1:45 am
Hi,
the following is taken from BOL (see sp_password)
sp_password [ [ @old = ] 'old_password' , ]
{ [ @new =] 'new_password' }
...
May 15, 2003 at 8:55 am
Hi,
I think you buy the server with a limited number of clients licenses. The tool to administrate the Server is not limited to a number of installations.
Well, that's what...
May 15, 2003 at 8:48 am
Thanks Brian,
very sophisticated indeed, but understood. Now I know where to dig deeper on our network.
Cheers,
Frank
May 15, 2003 at 8:32 am
quote:
MySQL has its fans though personally I suspect the MySQL vs other open source databases is the VHS vs Betamax thing again.
May 15, 2003 at 8:10 am
quote:
Simply being an admin on one's own box doesn't confer you any additional rights on a separate SQL Server box.
May 15, 2003 at 8:07 am
quote:
If it's a production server, developers shouldn't typically have such rights. This will typically be one of the first things flagged in...
May 15, 2003 at 7:47 am
quote:
look at MySQL but have never made the time. Like someone else mentioned, I've used Access to front end other databases,...
May 15, 2003 at 7:21 am
quote:
I don't think encrypting the stored procedures will solve your problem. It sounds like too many people have too many rights into...
May 15, 2003 at 7:15 am
Hi,
I think not to all objects at once in EM, unfortunately. Maybe per script?
That's the reason for a role. You define the permissions just once for the role. And by...
May 15, 2003 at 6:26 am
Here we go
This one retrieves binary data and writes to file
Dim strStream As ADODB.Stream
sql = "SELECT * FROM mails_attachments WHERE id=" & CLng(DataList3.BoundText)
Set rs = New ADODB.Recordset
cnnArchive.Open SNIPPET_STRING
rs.Open...
May 15, 2003 at 6:23 am
Hi,
if you're doing this with ADO take a look at the ADO Stream Object. A code snippet follows when I find it. Should soon be the case
May 15, 2003 at 6:18 am
Hi,
adding a role is always a good idea. It saves you a lot of time for maintenance.
Cheers,
Frank
Edited by - a5xo3z1 on 05/15/2003 06:05:28 AM
May 15, 2003 at 6:05 am
Hi Stuart,
as I wrote before. It depends on your needs. If you are running a private homepage on the web, you rarely do more than a SELECT * from .......
May 15, 2003 at 5:28 am
Viewing 15 posts - 5,266 through 5,280 (of 5,356 total)