How do I write an Update statement to update a field called LastName with
this value O'Conner.
I've tried the norm but I keep getting error messages.
UPDATE Customers SET LastName = 'O'Conner'
How do I fix?
Thanks,
Lou
...
more >>
is there a way to export all my stored procs
to another database on another server
thanks
dave
...
more >>
I have two tables that can be joined on a foreign key.
Table1 contains:
Key,Name
1, A
2, B
3, C
Table 2 contains:
Fkey, Name2
1, B
1, D
2, C
2, E
So i want to say something like "Show me all the links for A"
giving:
A,B
A,D
A,C
A,E
The reason we get A...
more >>
Hello,
I receive the following error when querying a linked access 2007
database (as linked server) to sql server 2005 express:
Msg 7399, Level 16, State 1, Line 1
The OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server
"underbase" reported an error. Access denied.
Msg 7301, Level 1...
more >>
How can I write a constraint to allow only printable ascii characters
in a nvarchar field?
...
more >>
In looking at a sql trace in profiler I see a large number (over 1
million) sp_reset_connection calls from our ASP.NET application to our
SQL Server 2005 database.
I know that sp_reset_connection is used with connection pooling
between calls. My concern is the ratio of procedure calls to
con...
more >>