Viewing 15 posts - 2,416 through 2,430 (of 9,643 total)
How is the stored procedure being called? Is there another outer transaction?
Have you run DBCC OPENTRAN() to see what the open transaction is?
April 19, 2011 at 7:53 am
I don't think there is a way to do this without doing some CLR programming.
April 19, 2011 at 7:46 am
There is no way to control this in my experience.
You can write a custom web page that then calls the report passing the parameters.
April 19, 2011 at 7:44 am
I'm not a .NET Nuke expert, but PASS uses .NET nuke for the chapter sites and I hate it.
I'm pretty sure that you can do VB.net in a...
April 19, 2011 at 7:32 am
You can't really do that with one query because the database permissions are stored in each database.
You can use sys.server_principals for logins and then loop through the databases to find...
April 19, 2011 at 7:24 am
That error should only happen when connecting and if the developer is loading the 7000 rows at once it should be in across one connection. Sounds like the VB...
April 19, 2011 at 7:16 am
You'd have to test to find out. I've used both and not had problems.
April 19, 2011 at 7:10 am
You misspelled QUIET you have QUITE. Try this
setup /ACTION=REBUILDDATABASE /QUIET /INSTANCENAME=MSSQLSERVER /SQLSYSADMINACCOUNTS=domain\myaccount /SAPWD=sapwd /SQLCOLLATION=SQL_Latin1_General_CP1_CI_AS
Also, unless you are in MIXED MODE AUTHENTICATION you do not need to supply the...
April 19, 2011 at 6:55 am
doug 40899 (4/18/2011)
17055055426893BITTAR&ESKEW03849010200YIUM 8400384901293TG 8199
27055155427287ZZOB02 ...
April 18, 2011 at 1:00 pm
They might be better off if they used permanent tables instead of temporary tables.
April 18, 2011 at 12:04 pm
You are referencing those columns in the where clause of the not exists subquery and you have removed them from the derived table in your from clause. If you...
April 18, 2011 at 9:55 am
There are a couple of potential things here.
1. You aren't displaying the TimeStamp column so it is likely working just as expected. The TimeStamp may not be the...
April 18, 2011 at 9:45 am
Since blocking is a transient operation you can't be guaranteed the blocking will still be in place when a process runs. You might want to look into using event...
April 18, 2011 at 7:55 am
As long as the SQL Server service account had write permissions on the directory you should get a proper backup. A user logs into SQL Server and then any...
April 18, 2011 at 7:43 am
You should use TRY CATCH, but error messages are stored in sys.messages so you can get the description from there. You also need the language to limit the results....
April 18, 2011 at 7:40 am
Viewing 15 posts - 2,416 through 2,430 (of 9,643 total)