Viewing 15 posts - 31 through 45 (of 71 total)
If you wish to store login credentials within the package then you have to set the 'ProtectionLevel' package property to something other than 'DontSaveSensitive'
I normally set the 'ProtectionLevel' to...
January 8, 2010 at 6:09 am
A problem can arise if the 3rd-party code uses @@IDENTITY rather than SCOPE_IDENTITY() immediately after any INSERTs, and where, within your trigger, you insert rows into another table with an...
November 29, 2009 at 1:58 am
Run the following statement:
SELECT DB_NAME(database_id), *
FROM master.sys.master_files
...or for SQL Server 2000:
SELECT DB_NAME(dbid), *
FROM master.dbo.sysaltfiles
If the mysterious mdf and ldf files belong to a database that is attached to SQL Server...
November 29, 2009 at 1:48 am
Hi Brandon
How often do you run this stored procedure, and why?
I'm just trying to understand under what scenario you would want to shrink all transaction logs.
It would be a good...
November 27, 2009 at 2:24 am
If you don't have any luck with the suggestions so far then you may wish to consider trying one of the following options:
1.Add the LOOP join hint to each of...
November 25, 2009 at 4:56 am
In terms of the tools that can be used to identify this missing index yourself, have a look at the execution plan that you posted to the forum.
At the top...
November 10, 2009 at 8:11 am
sindbad7000 (11/10/2009)
Thanks alot it works... now it retrieves the 5200 records in only one second...thanks alot again i appreciate that alot
but please may i ask about the tools you used??
Which...
November 10, 2009 at 7:28 am
Paul's suggestion is good, and is consistent with the missing index that was suggested by SQL Server in the execution plan that you provided.
If you almost always return rows from...
November 10, 2009 at 5:58 am
As you're having no luck in receiving a response to this query, why not post a bug report on MS' Connect site:
Chris
November 6, 2009 at 9:09 am
An alternative approach, if all of your strings contain one leading " and one trailing ", would be to use the SUBSTRING function:
DECLARE @MyString VARCHAR(100),
SET @MyString = '"1234567"'
SELECT SUBSTRING(@MyString, 2,...
October 28, 2009 at 2:03 pm
Wallace Wood (10/21/2009)
Our production database is 266400.69 MB and a simple backup, copy to test server, restore on test works fine for us as a nightly job.
Just to point out...
October 21, 2009 at 1:58 pm
Just having CLR enabled consumes a surprisingly large amount of VAS (I can't quantify exactly how much) - it would be worth disabling CLR then restarting SQL Server if you...
October 15, 2009 at 11:46 am
At least you can predict the behaviour now, you're one step closer. Now to try and work out why the memory is becoming so fragmented. 🙂
Have you managed to correlate...
October 14, 2009 at 1:23 pm
There's an excellent blog post by Jonathan Kehayias that explains VAS reservation in SQL Server:
The detail contained in the post may well assist with your troubleshooting.
Chris
October 13, 2009 at 3:17 am
Viewing 15 posts - 31 through 45 (of 71 total)