Viewing 15 posts - 286 through 300 (of 541 total)
in connections container there is a function called createStatement().
Use it to issue SET QUOTED_IDENTIFIER ON
November 18, 2010 at 12:13 pm
It happens to me when i have 20 different apps running
so after that I started using undocumented sp_readerrorlog which also allows you to search error logs.
Here is the syntax...
November 1, 2010 at 2:54 pm
geramkumar (11/1/2010)
I am a SQL Server DBA with bit .net developmet background. I manage 5 SQL Server 2008 R2 Instances.
My thought is to setup centralised monitor of 5...
November 1, 2010 at 1:14 pm
October 27, 2010 at 11:58 am
Boris-615127 (10/27/2010)
I have Server that Has a lot of inserts going trough "sp_executesql" and some of them fail with
Msg 2627, Level 14, State 1,...
October 27, 2010 at 11:11 am
it would look something like this:
do not run this on production since it was just written and never tested.
you can have a static table but in this case it's a...
September 21, 2010 at 8:13 am
I would create a stored procedure which starts with getting data into sql server from excel:
SELECT * INTO XLImport5 FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:\test\xltest.xls', 'SELECT * FROM [Customers$]')
then add the rest of...
September 20, 2010 at 2:58 pm
truncate your tran log and in datapump change "insert batch size" to 25,000.
Also you should set your recovery model to bulk-logged during high volume of inserts.
September 16, 2010 at 1:40 pm
WayneS (9/9/2010)
I'm trying to export some data into an excel spreadsheet. This is actually being run through an SSIS package. Because the column...
September 10, 2010 at 3:09 pm
AKP (9/8/2010)
I have a question regarding logshipping refresh on SQL 2005.
Here we have a logshipping configuration(Primary & Secondary) with Monitor Server. The secondary database is in restoring mode. Since...
September 10, 2010 at 2:41 pm
dallas13 (8/31/2010)
August 31, 2010 at 12:19 pm
did you update stats after partitioning?
also you can use index hints:
select * from table_name with (index(index_name))
August 19, 2010 at 12:39 pm
Viewing 15 posts - 286 through 300 (of 541 total)