Viewing 15 posts - 1,141 through 1,155 (of 1,999 total)
SQL Kiwi (5/22/2012)
michael vessey (5/22/2012)
when you perform deletes on a heap the space is not reclaimed.Unless a table lock is taken (and/or specified).
ah yes - i forgot to mention that...
May 22, 2012 at 8:36 am
Team foundation server 2010 is pretty good, but maybe wait for 2012
if your organisation is too small to afford TFS then you can't beat Subversion (SVN) and Tortoise
with SVN...
May 22, 2012 at 8:30 am
+1 - see the following on how to get your data into 1st normal form
May 22, 2012 at 8:10 am
try this and see if it matches
create table #temp (mydata varchar(20))
insert into #temp select 'ABCDEF?/??GHIJK'
select * from #temp
drop table #temp
May 22, 2012 at 6:05 am
i used to do this to prevent my devs running as "SA" - we were required to audit schema changes , so if an object was modified by "SA" then...
May 22, 2012 at 6:01 am
'Table_1' table
- Unable to create table.
you are not allowed to alter the Table
profile name is not valid
The transaction ended in the trigger. The batch has been aborted.
this...
May 22, 2012 at 5:59 am
if it's in an nvarchar column then soembody forgot to put the N' identifier in the insert statement and you have non-ascii characters stored in your string in unusable format
May 22, 2012 at 5:33 am
We run a system that is a hybrid.
local hardware for our internal needs, cloud hosted servers for computational grunt and cloud services (such as ddb, EMR and SQS) for all...
May 22, 2012 at 5:31 am
i really don't think, we should continue this - the original poster seems to be just taking the mick. - and our responses are proboably becoming inappropriate - also i...
May 22, 2012 at 3:47 am
nsi (5/21/2012)
we have a table that has 714k rows. The table takes up 850Gb, where each rows actual data is no more than 2-4k. It has a few int, nvarchar...
May 22, 2012 at 2:57 am
Koen Verbeeck (5/22/2012)
Or Bing!(or even Yahoo if you must)
hey - what's wrong with askjeeves.com
May 22, 2012 at 1:49 am
there are 2 ways
right click on the database and choose properties and then in one of the screens there will be a recovery mode box (i don't have sql...
May 21, 2012 at 10:30 am
Steve Jones - SSC Editor (5/21/2012)
Is that database in recovering or restoring mode?
from the sp_helpdb it looks as if they are all ONLINE
May 21, 2012 at 10:14 am
yep - you need to drop and add the subscription for that table only. - although the article has the same name i think it gets a different internal identifier
May 21, 2012 at 10:09 am
I think the use of the word profile in the error might be relating to some jet 4 components.
if you only need to import this data once then you could...
May 21, 2012 at 10:08 am
Viewing 15 posts - 1,141 through 1,155 (of 1,999 total)