Viewing 11 posts - 1 through 11 (of 11 total)
March 29, 2018 at 11:21 am
March 29, 2018 at 10:11 am
How is this different from starting up Visual Studio and importing the database schema and then adding it to a VCS ?
Create new database project and then choose...
March 29, 2018 at 4:40 am
I've...
January 3, 2018 at 3:25 am
I do this on tables with > 1.000.000 records
Something to keep in mind of course, is the number / complexity of indexes.
A possibility is to disable all indexes, remove the...
January 28, 2015 at 9:12 am
My way of working:
[font="Courier New"]
BEGIN TRAN
SELECT DISTINCT *
INTO #tempTable
FROM myTable
TRUNCATE TABLE myTable
INSERT INTO myTable
SELECT *
FROM #tempTable
COMMIT TRAN
DROP TABLE #tempTable
[/font]
January 28, 2015 at 3:44 am
This is the code I used...enjoy 🙂
-- Get table (worksheet) or column (field) listings from an excel spreadsheet
DECLARE @linkedServerName sysname = 'TempExcelSpreadsheet'
DECLARE @excelFileUrl nvarchar(1000) = 'D:\\SHARE\\WLAN\\Report.xlsx'
IF OBJECT_ID('tempdb..#MyTempTable')...
June 27, 2014 at 1:46 am
Yes, I have seen this...but sometimes the person who asks the question also finds a solution him- or herself.
HOWEVER, for any future finders of this post, I will answer this...
May 7, 2014 at 11:56 am
Did you ever got this to work ?
May 7, 2014 at 7:22 am
I stumbled upon the same error together with the error Unable to bulk copy data.
Switching off UAC and (!) rebooting the system, worked like a charm.
January 2, 2012 at 3:56 am
You are probably running the Activity monitor which generates:
EXEC #am_generate_waitstats
entries in the Profiler after an executed query
October 28, 2010 at 2:35 am
Viewing 11 posts - 1 through 11 (of 11 total)