Viewing 15 posts - 2,221 through 2,235 (of 9,641 total)
I have a degree, but in Physical Education. I got into development and databases because my best friend at the time was the software development manager at a local...
September 9, 2011 at 7:15 am
Brandie Tarvin (9/8/2011)
Jack Corbett (9/8/2011)
September 8, 2011 at 9:58 am
You don't have a package configuration somewhere that is overwriting the design-time value do you? It sounds like that could be it since having a different name makes it...
September 8, 2011 at 9:21 am
I can only suggest running a trace when running the GUI for both tasks as they must be doing something differently when getting the data. I don't have the...
September 8, 2011 at 7:23 am
I've missed 24HoP due to work not liking streaming (I really need a telecommute job) and other responsibilities last night.
I believe I'll be seeing Grant on Monday night....
September 8, 2011 at 6:47 am
Sounds like you have multiple files in tempdb. What's the result of this query:
USE tempdb ;
GO
SELECT
*
FROM
sys.database_files AS DF
September 7, 2011 at 12:38 pm
Duplicate post. Please post answers here
September 7, 2011 at 12:15 pm
You can determine what FK's do not have an index on the column with a query like this:
SELECT
OBJECT_NAME(IC.object_id, DB_ID()) AS table_name,
...
September 7, 2011 at 10:46 am
Try checking for server triggers.
USE MASTER;
Go
SELECT * FROM sys.server_triggers AS ST
SELECT * FROM sys.triggers AS T
The error clearly says that there is a trigger involved that is not allowing dropping...
September 7, 2011 at 10:35 am
You should be getting a "Save As" file dialog box that pops up. My guess is that this is coming up in the background. Try minimizing and then returning...
September 7, 2011 at 10:21 am
I'd check fill-factor on the indexes, particularly those that show high fragmentation on a regular basis.
Also what are the clustered indexes set-up on? Are they on monotonic columns...
September 7, 2011 at 10:14 am
Stefan Krzywicki (9/2/2011)
GSquared (9/2/2011)
Stefan Krzywicki (9/2/2011)
Jack Corbett (9/2/2011)
Stefan Krzywicki (9/2/2011)
GSquared (9/2/2011)
GilaMonster (9/2/2011)
GSquared (9/2/2011)
September 2, 2011 at 1:55 pm
Sounds suspiciously like a parameter sniffing option. Check out this article.
September 2, 2011 at 12:28 pm
Viewing 15 posts - 2,221 through 2,235 (of 9,641 total)