Viewing 15 posts - 166 through 180 (of 1,654 total)
Gianluca Sartori (10/11/2011)
MarkusB (10/11/2011)
I don't think there's a big difference in performance.
SELECT ... INTO can be minimally logged, while INSERT INTO is fully logged.
From a performance standpoint, it makes some...
October 11, 2011 at 3:14 am
Ole,
which settings are you using right now. The default setting is "Do not cache temporary copies of this report", so I wonder if any caching is configured yet.
October 11, 2011 at 2:13 am
SELECT INTO will create a new temporary table with exactly the same columnnames and datatypes, while in the second case you first have to do a create tabel where you...
October 11, 2011 at 1:24 am
Very good question even though I missed the point that INTERSECT precedes EXCEPT
October 11, 2011 at 1:16 am
luluwang205205 (10/10/2011)
October 10, 2011 at 8:47 am
Tony,
have a look here:
http://www.mssqltips.com/sqlservertip/1622/generate-sql-agent-job-schedule-report/
I think this is pretty much what you want.
October 6, 2011 at 7:41 am
I'm sure there are a couple of ways how you can do it, but to me the simplest one would be this:
DBCC SQLPERF ( LOGSPACE )
September 29, 2011 at 2:29 am
If your question is why the statement like that doesn't work just look at the last part of the errormessage "or it may be an advanced option".
Under the default...
September 13, 2011 at 1:31 am
WHen you create the login on the secondary server you should use the SID option to create the login with the same sid as on the primary server.
-- get sid...
September 12, 2011 at 3:45 am
If you're using the Enterprise Edition you can simply crteate a Data driven subscription. In the query window write a query to select all the values
SELECT RegionName from yourTable
and...
September 9, 2011 at 1:13 am
ap123 (8/31/2011)
checked the sql services running in sql server configuration manager and found the following 3
1. SQL Server Integration...
September 7, 2011 at 1:36 am
Here is a stored procedure I wrote a little while ago to handle such an issue.
I takes 3 input parameters, first the job which you want to know the status...
August 12, 2011 at 2:18 am
abhishek_dwivedi03 (8/12/2011)
Msg 3013, Level 16, State 1, Line 1
BACKUP DATABASE is terminating abnormally.
I have write persmissions on the shared location...
August 12, 2011 at 1:04 am
You have to put double-quotes around the table name.
DBCC SHOWCONTIG ("HumanResources.Employee");
Or even better since DBCC SHOWCONTIG is deprecated, use sys.dm_db_index_physical_stats
SELECT * FROM sys.dm_db_index_physical_stats(db_id(), object_id('HumanResources.Employee'), NULL, NULL , 'LIMITED'); ...
August 10, 2011 at 1:53 am
Mark,
is this a SQL login or Windows login?
I suspect it's SQL, so did you check if the user and the login are linked together? If not you can...
August 5, 2011 at 5:21 am
Viewing 15 posts - 166 through 180 (of 1,654 total)