Viewing 15 posts - 6,616 through 6,630 (of 7,168 total)
It depends on whether the process is running in 32-bit or 64-bit mode. This is also true of DSNs. If you are referencing a DSN in your connection string when...
April 20, 2011 at 8:50 am
I am taking CDC to mean Change Data Capture.
April 20, 2011 at 1:43 am
Please don't cross post, it just fragments the conversation:
http://www.sqlservercentral.com/Forums/Topic1095501-392-1.aspx
April 19, 2011 at 4:56 pm
LutzM (4/19/2011)
Brandie Tarvin (4/19/2011)
April 19, 2011 at 4:34 pm
Phew, glad I am not the only one. It took me 30 minutes reading various articles online, and re-reading Gail's posts on this thread, just to get to to a...
April 19, 2011 at 4:24 pm
Unfortunately BULK EXPORT does not exist. Please vote for the suggestion here:
http://connect.microsoft.com/SQLServer/feedback/details/224026/sql-engine-bulk-export-command
April 19, 2011 at 3:48 pm
Just curious really, your index name has PK, but your DDL is only creating a UNIQUE CLUSTERED INDEX.
CREATE UNIQUE CLUSTERED INDEX PK_TABLENAME
ON dbo.TableName(ColumnA ASC,ColumnB ASC)
WITH DROP_EXISTING
ON NEWFILEGROUP
Is there a reason...
April 19, 2011 at 3:39 pm
A derived table may not perform as well as an EXISTence check using a correlated subquery. Try something like this:
SELECT p.*
FROM People p
WHERE NOT...
April 19, 2011 at 3:28 pm
What kind of trigger, AFTER or INSTEAD OF? Without seeing the trigger code and your table definitions it is difficult to say much. Also, are you receiving any error or...
April 19, 2011 at 3:21 pm
You can either issue a series of ALTER PARTITION FUNCTION statements to create the additional partitions or you create a new table with the partitioning you want and then INSERT...
April 19, 2011 at 3:07 pm
Thanks Gail, that helped. The relationship between virtual address space and physical memory, what relationship there is, is becoming more clear...I just stumbled into a really big topic.
You said "The...
April 19, 2011 at 2:48 pm
Something else worth checking immediately after an instance restart, as your process is running and after your process completes:
-- credit to Bob B: http://social.msdn.microsoft.com/Forums/en-US/sqlnetfx/thread/bbc1c753-c5df-4d52-a567-c982cf506051
SELECT SUM(pages_allocated_count) / 128.0 AS CLR_memory_MBs
FROM...
April 19, 2011 at 12:43 pm
I guess was thinking about it all wrong...if a 64-bit instance has 10GB memory allocated to it, I figured you may want to tell SQL Server to start out with...
April 19, 2011 at 12:31 pm
Bob B said -g has no effect on 64-bit systems. Anyone else have a theory?
http://www.sqlservercentral.com/Forums/Topic1095860-391-1.aspx
Tomas, have you (re)considered writing a process in T-SQL to replace your CLR proc? 😀
April 19, 2011 at 11:54 am
Viewing 15 posts - 6,616 through 6,630 (of 7,168 total)