Viewing 15 posts - 1,036 through 1,050 (of 1,365 total)
This is an error whereby, the result query (SELECT * FROM X) has given
more data than there is memory available in the system to handle.
Either that, or look...
October 15, 2008 at 11:07 am
Make use of somehting like:
DECLARE @sql VARCHAR(1000) SELECT @sql = 'exec ' + @servername + '.' +
@databasename+ '.dbo.sp_executesql N''grant select on '+ @tablename + ' to '
+ @username...
October 15, 2008 at 10:58 am
You can make use of xp_regread and xp_regwrite stored procedures to do this but I don't think its recommended. These procs. will directly make update in the registry.
You need to...
October 15, 2008 at 10:28 am
The Bulk-Logged model provides higher performance and lower log space consumption for certain large-scale operations (for example, create index or bulk copy). It does this at the expense of some...
October 14, 2008 at 4:44 pm
Try this:
if ((SELECT count(name) FROM master.dbo.sysdatabases) - (select count(*) from dbo.Historique )) <> '0'
begin
...
October 14, 2008 at 3:20 pm
Adding to what Steve and Shaw said you have first track down the code involved in deadlock and then you need to change the code or tune the code to...
October 13, 2008 at 9:16 am
I saw the below mentioned explanation somewhere on this site:
SP4 reports queries blocking on themselves?
What you are seeing is not related to locks, rather it is related to the
latch...
October 10, 2008 at 10:32 am
You can't go for mirroring here as it is a feature in 2005 and also the mirror database is not avvailable for access until failover happens.
Either go for backup/restore as...
October 9, 2008 at 9:00 am
Seems like you might have something listening on TCP port configured for this instance or might be its blocked somehow.
Do you have more than one SQL Server instance on...
October 8, 2008 at 4:59 pm
To find objects owned by specific logins use:
select user_name(uid) as OwnerName,so.name as ObjectName from dbo.sysobjects so where uid<>user_id('dbo')
And to change the owner back to dbo or any other user...
October 8, 2008 at 4:51 pm
Have you specified the file extension explicitly under the maintenance plan? For example, file with extension ".BAK"
MJ
October 7, 2008 at 3:56 pm
You might need to uninstall\install .NET framework again.
MJ
October 7, 2008 at 3:47 pm
Have you set SET NOCOUNT ON in the beginning of stored procedure?
Did you ran the stored procedure just after running it in QA?
MJ
October 7, 2008 at 3:30 pm
Try this:
ALTER USER user_name WITH LOGIN = login_name
MJ
October 7, 2008 at 3:07 pm
Viewing 15 posts - 1,036 through 1,050 (of 1,365 total)