Viewing 15 posts - 4,111 through 4,125 (of 7,187 total)
The program name column in sp_who2 may give you a clue. If not, and you are familiar with what the packages do, use DBCC INPUTBUFFER to get the command...
April 12, 2013 at 9:35 am
If you've got a lot of files in your folder, it will probably be more efficient to run a dir statement (or the equivalent in VB or Powershell or your...
April 12, 2013 at 9:16 am
Could be a problem with parallelism, especially given that it occurs on your high-spec servers but not on the lowly laptop. What sort of wait stats do you get...
April 9, 2013 at 8:56 am
Have a look at sys.dm_os_waiting_tasks while the application is running slow on your server. What is the most common wait_type for processes that are executing application threads?
John
April 9, 2013 at 8:42 am
IF USER_ID('test') IS NOT NULL
DROP USER test
Run against all databases. If you have so many that that would be tedious, use sp_ms_foreachdb.
For future reference, you can do all that...
April 5, 2013 at 3:06 am
Your function takes three parameters, yet in your query, you pass it four. Do you not get an error when you run the query?
We may not be able to...
April 3, 2013 at 8:26 am
You've got two options:
(1) Load the whole file into a staging table and do the processing in the database engine, using SSIS to do the final export back out to...
March 28, 2013 at 2:31 am
Gamit
What is the exact error message and what command are you using to restore the database? If you are using the GUI, there is a script button you can...
March 28, 2013 at 2:27 am
Table DDL, sample data and expected results would help us to help you. In the absence of that, what does this return?
SELECT DISTINCT rep_id, hcp_cid
FROM SE_Violation_Detection
John
March 22, 2013 at 10:54 am
Do you have any other tables that reference the identity column on this table? For example, are there any foreign key constraints?
John
March 22, 2013 at 9:05 am
Presumably your identity seed is 1? You could set it to -2,147,483,647. That would double your capacity - I don't know whether that would be enough?
John
March 22, 2013 at 6:13 am
Have you tried the dm_os_performance_counters DMV?
John
March 22, 2013 at 5:32 am
SQL ORACLE (3/20/2013)Shrinking the database such that it has zero available space is requested by our users. They use ithe database for creating reports.
You're the database professional - it's OK,...
March 20, 2013 at 9:11 am
What are the differences between your login and the SQL Server Agent account login? Default database? Language? Anything else?
Does your package do anything user-sensitive, for example INSERT...
March 20, 2013 at 9:06 am
There's a limit to how small you can shrink a database. I can't remember off the top of my head what it its - I think it's either the...
March 20, 2013 at 8:47 am
Viewing 15 posts - 4,111 through 4,125 (of 7,187 total)