Viewing 15 posts - 241 through 255 (of 297 total)
Hi
Have you tried Dave's blog?
June 10, 2009 at 2:03 am
Hi
Firstly you will need to create a linked server (if you already haven't).
Then follow the blog below.
http://blogs.msdn.com/joaquinv/archive/2008/10/23/execute-oracle-stored-procedure-in-sql-server.aspx
June 8, 2009 at 3:15 am
Have you tried the OPENQUERY statement?
delete
openquery(Linkedservername, 'select ......... from tablename where ....')
June 5, 2009 at 4:06 am
Not sure this is the ideal way, but there safest in our company is...
- Remove replication on the DB you want to restore and on the subscribers.
- Restore the DB...
June 5, 2009 at 3:58 am
Look @ BOL and search for "SET Options That Affect Results"
Its is under Indexes | Designing Indexes | Gernal Index Design Guidelines.
Some good tips in there.
June 4, 2009 at 9:14 am
As Lynn as already posted, use the import/exp wizard.
Below is a good article with print screens.
June 4, 2009 at 9:01 am
Hey
http://sqlblog.com/blogs/kalen_delaney/archive/2009/05/03/controlling-lock-granularity.aspx
At the bottom of the blog gives you some info on the questions you have asked. Keep the blogger bookmark.. He writes some good stuff
JL
June 4, 2009 at 7:09 am
Not sure how to do it in Java
But I would make the SP output a return value instead of print.
CREATE PROC p_ReturnValue
@ReturnValue INT output
AS
SET @ReturnValue = 999
RETURN @ReturnValue
declare @returnvalue...
June 4, 2009 at 6:39 am
I would personally start with why you are getting blocking...?
1. What hardware does the SQL server run on and is it enough?
2. Check for "missing" indexes. The script attached uses...
June 3, 2009 at 9:51 am
I dont suppose you have checked the blog below out?
I too have been bitten with DNS and Clustering!
June 3, 2009 at 9:40 am
will you company not allow you to trace the db? you dont need sysadmin right to trace.
GRANT ALTER TRACE TO [domain]\[username];
GO
Or
June 3, 2009 at 5:22 am
Hey
There are a few tip on the link below
June 3, 2009 at 5:11 am
If in doubt Wiki it..
June 2, 2009 at 3:26 am
Sample Trigger i use
IF(UPDATE(Authorised))
BEGIN
UPDATE
tbl
SET
IsAuthorised = (CASE WHEN inst.Authorised = 'Yes' THEN 1 ELSE 0 END)
FROM
TABLE tbl
INNER JOIN INSERTED inst ON tbl.TaskNumber = inst.TaskNumber
END
June 2, 2009 at 2:21 am
Viewing 15 posts - 241 through 255 (of 297 total)