Viewing 15 posts - 42,571 through 42,585 (of 49,571 total)
Taking one step back... Why do you need to add columns to a table in a stored procedure?
December 5, 2008 at 4:49 am
Did the installation of the patch give any errors?
I think you may want to take this issue to Microsoft's customer support. They're probably going to be able to help you...
December 5, 2008 at 4:48 am
Schadenfreude-Mei (12/5/2008)
To allow replication you db must be in Full or Bulk recovery model.
Replication does not require any particular recovery model. All forms of replication (snapshot, transactional, merge) work fine...
December 5, 2008 at 4:41 am
Consider transactional replication rather.
Mirroring is a high-availability solution, not for reporting.
December 5, 2008 at 1:53 am
You'll have to generate scripts of all of the objects in the DB - tables, views, procedures, functions, users, etc. Then you'll have to export the data. bcp works, as...
December 5, 2008 at 1:48 am
Database restores (including log restores)
Autoclose (a good candidate on SQL Express)
Some sp_configure alterations
DBCC FREEPROCCACHE
December 5, 2008 at 1:32 am
Post it on Connect and see what the MS people say.
The info bar at the bottom of the screen does change colour (in SQL 2008) based on what server you're...
December 5, 2008 at 1:31 am
umanpowered (11/5/2008)
the table. The 'modify_date' is still showing the previous date.
I'm using the...
December 5, 2008 at 1:26 am
You can restore the backup to 2008. Databases can always be upgraded in version, never downgraded.
December 5, 2008 at 1:26 am
Try something like this
SELECT * , ROW_NUMBER() OVER (ORDER BY ID) % 2 AS AlternatingFlag
FROM SomeTable
December 5, 2008 at 1:19 am
madhu.arda (12/4/2008)
is that possible that the dead lock happened in different database 12 which not mentioned in the dead lock graph?
The dead lock resources were on the two tables in...
December 5, 2008 at 12:40 am
As I said above, you don't need an update in the trigger. The trigger is fired by an update, there's no need to repeat that update within the trigger.
You don't...
December 5, 2008 at 12:38 am
That kind of catch-all query doesn't perform well at all. On SQL 2000 there's no way to make it perform well
Have a look at this thread - http://www.sqlservercentral.com/Forums/Topic599065-65-1.aspx
December 4, 2008 at 2:27 pm
Viewing 15 posts - 42,571 through 42,585 (of 49,571 total)