Viewing 15 posts - 166 through 180 (of 5,103 total)
madamcurie2005 (4/30/2009)
I have created a view on my server A which is caling a table from Server B. The table that its calling...
April 30, 2009 at 1:04 pm
That seems to indicate a client-side, not a server side issue.
April 30, 2009 at 9:17 am
Here are some points to help you get started:
Do you have the Transaction log with too many VLFs ?
Is the recovery more of the DB set to BULK_LOGGED at bcp...
April 30, 2009 at 9:15 am
I don't think that's implemented in SSMS.
April 30, 2009 at 8:26 am
jpdlp (4/30/2009)
noeld (4/29/2009)
jpdlp (4/29/2009)
In the table [article table] , the column [article stock] is 5
subscriber 1 sells 1 unit and updates [article stock] to 4
subscriber 2 sells 2 units...
April 30, 2009 at 8:14 am
Why the database showing both standby/read-only?
If it is in stand-by, it has to be in read-only mode so that next Transaction log backup can be applied.
And that is the expected...
April 29, 2009 at 4:43 pm
I don't understand why you want to do that but here is a shot.
If that person using RDP is going to use SSMS you can set the default Isolation level...
April 29, 2009 at 4:39 pm
ruchi (4/29/2009)
We are trying to add one column with some default value in a table, which contains 25 crores rows of data. The query (Alter table command)is running from the...
April 29, 2009 at 12:57 pm
jpdlp (4/29/2009)
In the table [article table] , the column [article stock] is 5
subscriber 1 sells 1 unit and updates [article stock] to 4
subscriber 2 sells 2 units and updates...
April 29, 2009 at 12:46 pm
If the rebuild of a table starts at the last VLF you are likely to run out of space if the space is tight.
You should, BEFORE running the re-index, FORCE...
April 29, 2009 at 12:34 pm
icarus (4/22/2009)
April 29, 2009 at 12:31 pm
dallas13 (4/29/2009)
We have sql server event alert for error number-9002 which indicates full log.
every sunday when...
April 29, 2009 at 12:06 pm
if exists (select 1 from sys.columns c where c.object_id = object_id(@tname) and c.is_identity =1)
begin
-- identity column exists
end
else
begin
-- identity column does not exists..
end
But if you give us what you...
April 28, 2009 at 3:19 pm
Heather (4/28/2009)
I know this related to the network or client being slow. The network seems fine based on the looking at...
April 28, 2009 at 3:13 pm
Viewing 15 posts - 166 through 180 (of 5,103 total)