Viewing 15 posts - 31 through 45 (of 59 total)
November 15, 2011 at 5:01 am
islas.tonatiuh (11/14/2011)
But here comes my issue... in fact the free available space was reduced(i thought that the idea was to gain more free space)!!!!!
shrinking file will reduce free space...
November 15, 2011 at 4:56 am
try to ping the server using the machine name. If you are unable to ping, its a DNS issue.
besides IP, you can also use FQDN to connect.
November 14, 2011 at 9:47 am
sp_configure is used to read/change server wide settings.
sp_dboption is used to modify database level properties (not specific to a particular mdf or ndf).
so when you use sp_dboption to auto shrink...
November 14, 2011 at 9:43 am
It will return if either of the operands have null. You said you are using isnull, but the code you have shown doesnt have that.
November 13, 2011 at 3:46 am
Right click your server in management studio, goto properties. In the properties window, goto security and change authentication mode.
You'll need to recycle SQL Server services after that.
November 13, 2011 at 3:44 am
Are you connecting from the same server where SQL Express is installed? If not, remote connections are disabled by default on SQL Express. You'll need to enable that.
Also, Try connecting...
November 12, 2011 at 1:57 pm
And make sure the service account has write privileges on the UNC path.
November 12, 2011 at 1:30 am
Hope you have enabled the trace flag 1222 suggested by Gail. Whenever deadlock occurs, it'll be written in the SQL Server's error log.
November 12, 2011 at 1:24 am
Low Rider (11/11/2011)
1)Will each of the sql instance have a different IP ?
Each resource group (instance) will have a distinct IP. Users will view each instance as a virtual...
November 12, 2011 at 1:20 am
select * from sys.sysprocesses where dbid=db_id('my_db')
November 9, 2011 at 7:13 am
are you using a connection in query window? if yes close that and then try.
you can also query sys.sysprocesses to check who is connected to that database.
November 9, 2011 at 6:36 am
find the spid of the long running query and kill it
kill spid
November 9, 2011 at 5:42 am
Joy Smith San (11/9/2011)
November 9, 2011 at 3:40 am
You can backup your log but it wont truncate if log truncation is waiting for replication.
If the recovery mode is full, schedule regular log backups. See if transactional replication...
November 9, 2011 at 3:36 am
Viewing 15 posts - 31 through 45 (of 59 total)