Viewing 15 posts - 901 through 915 (of 1,219 total)
If you mean that you want to update the values explicitly, forget it. You cannot update values in an IDENTITY column.
Nor should there be any need to. Or more precisely,...
August 9, 2013 at 3:23 pm
jkelly (8/9/2013)
August 9, 2013 at 1:45 pm
dwilliscp (8/9/2013)
Sorry should have added.. 64bit. Any change that would effect Disaster Recover, has to be done by the App Admin team. So I put in a request, and will...
August 9, 2013 at 1:41 pm
Since there is a theory that SQL Server is being paged out, you should make sure that the service account for SQL Server has the Windows permission "Lock pages in...
August 9, 2013 at 1:34 pm
Chris first computes the sums over (Fiscal_Name, Period_Name, Fund_Name, Function_Name, Project_Name, Account_Name, Department_Name, Scenario_Key, Scenario_Name)
With these sums he then goes on to compute the sum over all columns but the...
August 9, 2013 at 1:27 pm
Can you also post the output of "SELECT @@version"
August 8, 2013 at 4:01 pm
jkelly (8/8/2013)
August 8, 2013 at 3:58 pm
If you run out of workers, this is likely to be due to one of the following (or a combination thereof):
1) There are simply too many active users.
2) There are...
August 8, 2013 at 3:54 pm
If the order of the INSERT statements is to be respected, we need to add an IDENTITY column:
Create table #Test1
(Name Varchar (50),
pos int IDENTITY (1,1))
Here is a query for...
August 8, 2013 at 3:47 pm
SQLSteve (8/8/2013)
select @backupcommand = ''Backup database '+ dbo.quotestring(@DatabaseName) + ' to disk = ''' + dbo.quotestring(@subdir) + '\' + dbo.quotestring(@DatabaseName) + '_''...
August 8, 2013 at 2:17 pm
To add what Jacob says, look closer at the output (and note that for some reason you have posted it upside-down, so read from the bottom):
08/07/2013 12:35:56,spid27s,Unknown,AND PurchaseOrderID = 1255...
August 8, 2013 at 2:10 pm
I think that doing that with Transactional Replication would be very difficult, as you would have to write a lot of custom code. But I am not an expert in...
August 8, 2013 at 2:07 pm
SQLSteve (8/8/2013)
Do I just set it as above? I get an error saying it cant find dbo.quotestring.
So did you read my post to the end and tried the link?
August 8, 2013 at 5:29 am
I have a confession to make: I have not worked much with fulltext indexes; only read a book and played a little with it.
For all my answers in this thread...
August 8, 2013 at 1:19 am
ashish.shevale (8/7/2013)
does this still happen
Yes. Sometimes it is more efficient that way.
Have you faced same scenario maybe for trigger or such
I have not investigated it, but it should covered in...
August 8, 2013 at 1:10 am
Viewing 15 posts - 901 through 915 (of 1,219 total)