Viewing 14 posts - 1 through 14 (of 14 total)
Hi Razvan,
I finally got the code and I will post it soon, the problem was solved.
Peace
Joseph Gama
February 21, 2004 at 6:34 am
Hi Razvan,
Thank you for letting me know about that problem. You are right and there are two solutions in TSQL: one is to store the entire code in a text record...
February 12, 2004 at 8:39 pm
To use windows authentication go to ENterprise manager and you should find your server under "Microsoft SQL Servers". Then, right click on the server name and "edit SQL server properties",...
December 19, 2002 at 8:37 pm
If you use SQLDMO you can find all the SQL server names and info.
December 19, 2002 at 8:34 pm
You can use UPDATETEXT to add 100 more bytes or WRITETEXT to replace totally with new data.
December 19, 2002 at 8:31 pm
You can create a linked server with sp_addlinkedserver
sp_addlinkedserver [ @server = ] 'server'
[ , [ @srvproduct = ] 'product_name' ]
...
December 19, 2002 at 8:28 pm
Why not use OPENQUERY to execute some SQL code simply to test the Oracle server?
December 15, 2002 at 3:12 am
Can you show a sample of the code you are using to create the recordset, including the connection string? It could be that the recordset is empty or the data...
December 15, 2002 at 3:04 am
You can use OPENDATASOURCE or OPENROWSET to connect to Oracle using an ad hoc connection that does not make use of the linked server.
Please check out the online Transact-SQL Reference:
December 15, 2002 at 2:56 am
Thank you. I based my article on NGSS work. They are the best security consultants that I can think of. Their work on SQL injection was also a pioneer and...
December 15, 2002 at 2:31 am
You can use STUFF:
STUFF
Deletes a specified length of characters and inserts another set of characters at a specified starting point.
Syntax
STUFF ( character_expression , start , length , character_expression )
Arguments
character_expression
Is...
December 13, 2002 at 8:06 pm
When you say online do you mean you are displaying the table in the web using ASP?
The you should refresh the page usint a metatag to refresh every minute or...
December 13, 2002 at 8:03 pm
If you go to Enterprise MAnager you can ccheck "Registered sQL server properties" and see if you have windows authentication or SQL Server authentication. Your code requires SQL Server authentication.
Try...
December 13, 2002 at 7:46 pm
Thank you. You are right, it is a matter of time and opportunity. Faster machines make brute force attacks easier, phone, email, ICQ and other faceless media allow for daring...
December 12, 2002 at 12:18 am
Viewing 14 posts - 1 through 14 (of 14 total)