Viewing 15 posts - 16 through 30 (of 127 total)
WITH (HOLDLOCK XLOCK ROWLOCK) is probably what you're looking for if you don't want anyone to be able to read the row.
March 25, 2013 at 9:04 am
You can try disabling page locks for the index your query is using maybe and then try the UPDLOCK clause to make sure the row still gets locked;
ALTER INDEX <INDEX_NAME>
SET...
March 25, 2013 at 6:15 am
You can use the WITH UPDLOCK clause in your update query.
There's a good thread on it here;
March 25, 2013 at 5:59 am
You can maybe look at building an array using the ISDATE() Function, or updating a flag field to return invalid entries...
i.e;
You can export the table to a test area, and...
March 25, 2013 at 5:33 am
It's pretty difficult to distinguish what part of the date corresponds to month or day or year, when you use free text entry, but a good place to start, if...
March 25, 2013 at 4:35 am
As with most things in SQL Server, it's more of an art than a science.
Simple answer is, "it depends".
In most cases, where tempdb is handling relatively small objects where statistics...
March 25, 2013 at 3:33 am
Ah yeah should have read the title...likely to be a driver issue if trying to connect to/from Oracle.
May be path related, tnsnames related or driver related.
Check those first and you...
March 15, 2013 at 8:01 am
If the log shipping chain is broken and you don't have copies of all logs from the primary database, you have to take a full backup of the primary database...
March 15, 2013 at 6:16 am
Any suggestions at all for either removing the user references altogether (outwith the web front end, which I am encountering the failure on), or for resolving the duplicate issue?
If anyone...
March 15, 2013 at 5:57 am
It depends on how many other users are using a generic login like "sa".
The audit results will only be as good as what goes into it.
If app connections are made...
March 15, 2013 at 5:54 am
So you're basically wanting to kick users out if they haven't worked on the table in the previous 3 hours?
Or are you just wanting to flag records which haven't been...
March 15, 2013 at 5:51 am
When you say "side by side," do you mean that you're going to install a 2012 instance on the same box, or that you're basically going to have a separate...
March 15, 2013 at 5:25 am
You've basically not uninstalled cleanly.
Go to Add/Remove Programs and make sure the 2 features coming up in the error message are removed.
If you've "deleted some of the directories" and these...
March 15, 2013 at 5:15 am
What type of connection are you trying to make?
Just to a SQL 2012 server?
March 15, 2013 at 5:07 am
sp_configure show_advanced_options, 1
reconfigure
Then just run sp_configure
Look for the xp_cmdshell "configured" value.
If it's 0, its disabled, if its 1, its enabled.
March 15, 2013 at 5:03 am
Viewing 15 posts - 16 through 30 (of 127 total)