Viewing 15 posts - 1,801 through 1,815 (of 7,168 total)
What does your logging say when run through SQL Server as compared to when it runs successfully through SSDT?
March 1, 2013 at 8:13 am
I am happy you got to the bottom of it. I try to call these out whenever I can, it's not a knock, just pointing out the preferred syntax for...
March 1, 2013 at 8:11 am
Is your system running NUMA of any flavor?
Does this yield multiple rows?
SELECT [type],
[name],
memory_node_id,
...
March 1, 2013 at 8:07 am
OK, so not by a schedule which means something or someone besides the Agent scheduler kicked it off.
Anything from this after adding your job name?
SELECT j.name,
...
March 1, 2013 at 8:00 am
Dung Dinh (2/28/2013)
As your point,I should rebuild or re-organize indexes on this table after this job is done nightly.
Yes. As often as you have a maintenance-window to keep those indexes...
March 1, 2013 at 7:09 am
When you use INSERT INTO are you adhering to the requirements to achieve a minimally logged operation?
From Books Online INSERT (Transact-SQL):
Using INSERT INTO…SELECT to Bulk Import Data with Minimal Logging
You...
March 1, 2013 at 7:05 am
The queries are a little off in my environments too, with clerks being about 10-15% higher. All I can think of is that clerks are operating a lower level than...
March 1, 2013 at 7:01 am
Jeff Moden (3/1/2013)
Actually, the change of an index CAN very much change the result especially where UPDATEs are concerned.
I think we covered the OP's question about SELECT statements so I...
March 1, 2013 at 6:47 am
Define "breaks." Do you receive an error or does the package execution succeed but no data is present in the Excel file?
March 1, 2013 at 12:02 am
Just for clarity, msdb.dbo.sysdtspackages90 is where Pakages were stored in SQL Server 2005. In SQL Server 2008 they are stored in msdb.dbo.sysssispackages.
Here is a PowerShell script already written that needs...
February 28, 2013 at 11:43 pm
npranj (2/28/2013)
I am trying to create a temporary table. It will contain approx 25 million rows to start with and will increase in future.
I tried
Option1: SELECT col1 into #tempT...
February 28, 2013 at 11:11 pm
Dung Dinh (2/28/2013)
I have a table Order with primary key ID column is uniqueidentifier data type on server B. Nightly, a synchronization job runs to synchronize orders from server...
February 28, 2013 at 10:59 pm
Did you get it resolved?
A shot in the dark:
You specified home\mssqlserver
mssqlserver is the hidden instance name handed to default instances of some versions of SQL Server. Are you sure it...
February 28, 2013 at 10:52 pm
shannonjk (2/26/2013)
There is no where in the software that I know of to call out a port number but I will check with them to see if that is possible!
If...
February 28, 2013 at 10:47 pm
The 'SQL Plans' cache includes plans for both 'Ad Hoc' and 'Prepared' queries.
February 28, 2013 at 10:40 pm
Viewing 15 posts - 1,801 through 1,815 (of 7,168 total)