Forum Replies Created

Viewing 15 posts - 1 through 15 (of 73 total)

  • RE: ALTER COLUMN & Indexes

    Thanks for the replies, I find it very odd that the error is thrown even when there is no data in the table. Thanks!

  • RE: Blocked Process Report - waitresource question

    Hmm, interesting. The object is a table (non-heap). There is a clustered index and 4 non-clustered indexes. Do you know of a more in-depth explanation of the...

  • RE: Service Broker Confusion

    Thanks for the information Craig, I really appreciate it. I'll read those articles you've included.

  • RE: Service Broker Confusion

    Thanks for the reply Craig!

    If this is the case (since this proc is running continuously) would that ever interfere with having MAX_QUEUE_READERS procs active?

    I meant that if one of the...

  • RE: SQL Server Log

    Hi Gail,

    Thanks for the response, I didn't think of traceflags. I ran DBCC TRACESTATUS and got the following two results:

    TraceFlag Status Global Session

    1204 ...

  • RE: System table mismatch

    My sincere apologies for jumping the gun, the problem is that this table is not a part of the dbo schema and I had overlooked that.

  • RE: Schema VS Owner - Stored Procedure

    Derrick,

    Thank you! The ALTER AUTHORIZATION is what I was missing. Now I am able to have ProcB a member of dbo schema, but owned by LoginA as...

  • RE: 4 Part Naming Convention

    Hey thanks for the info Lowell. I would have guessed the opposite - that the optimizer first checks the current db/schema and then if not found there, keep checking...

  • RE: Profiler Guidance

    Thank you both for the replies. I will try to flush out the various parameters being used on these queries. My apologies for the delay on thanking you!

  • RE: Query Re-Write to Minimize Logical Reads

    Thanks again for the replies. I've attached sample data now. Also, I made a typo in the original post. The PK of Table A is Col1. ...

  • RE: Query Re-Write to Minimize Logical Reads

    Thanks for the replies guys. Sorry if the use of ColX has confused us. Table A does not contain Col3 and Table B does not contain Col2. ...

  • RE: Using invoke-sqlcmd with SQL Server 2005

    Thanks for the replies guys. I haven't had any luck instantiating the snap-ins into the PowerShell. I also had trouble finding the actual profile to use. I...

  • RE: Using invoke-sqlcmd with SQL Server 2005

    Hey guys, thanks for the quick replies. The SQL Server 2005 instance is Standard Edition 64-bit. I do see the SQLPS utility in the C:\Program Files\Microsoft SQL Server\100\Tools\Binn\Redist...

  • RE: how to update nvarchar using variable

    Hey There,

    The following worked for me:

    declare @a nvarchar(20)

    set @a = N'CDDÉE'

    update testcols set col1 = @a

    HTH

  • RE: Creating Package Programmatically

    Turns out that this was a typo on my part in the connection string. This is why I got the error. To see this, I simply opened the...

Viewing 15 posts - 1 through 15 (of 73 total)