Viewing 15 posts - 136 through 150 (of 1,068 total)
That means max server memory is NOT set.
Please set max server memory to appropriate value.
August 6, 2012 at 12:36 am
Welcome. Happy to know that your problem is solved. Thanks for updating.
August 6, 2012 at 12:32 am
I don't think there is any relationship...
Please post the error message.
August 6, 2012 at 12:25 am
use <database>
go
select * from sys.sql_modules
where definition like '%abc%'
August 6, 2012 at 12:18 am
Why do want to decrease SQL Server memory? Do you have any other application on the machine which is having memory issue?
Have you set Max Server memory?
August 6, 2012 at 12:16 am
pavanpala.vja (8/5/2012)
So.......If u create an unique Clustered index On a table then is it allow...Nulls and duplicate values the.....By default..?
Unique Clustered Index does not allow duplicate values.
Single NULL value...
August 6, 2012 at 12:10 am
Try this:
UPDATE a
SET masuk = b.datang
from @FirstTable a
inner join
(select userid,convert(date,CHECKTIME,103) tgl,convert(VARCHAR(5),min(CHECKTIME),14) datang,convert(VARCHAR(5),MAX(CHECKTIME),14) selesai from CHECKINOUT
WHERE convert(date,CHECKTIME,103) >= @sdate and convert(date,CHECKTIME,103) <= @edate
group by userid,convert(date,CHECKTIME,103)) as b
on a.userid...
August 6, 2012 at 12:03 am
pavanpala.vja (8/5/2012)
Can we create clustered index on non primary key column '
Yes.
Because when i was tried in a sample table without primary key. and cluster index it was creating and...
August 5, 2012 at 11:51 pm
Is the existing instance a default instance?
Is the new instance a named instance?
August 3, 2012 at 5:57 am
BOL:
When specified, this option causes the Database Engine to disable automatic statistics rebuilding.
August 3, 2012 at 2:24 am
No VLFs would be truncated.
select log_reuse_wait_desc from sys.databases where name = '<dbname>'
would return "ACTIVE_TRANSACTION"
August 3, 2012 at 12:09 am
Granting SELECT permission on a table
The following example grants SELECT permission to user RosaQdM on table Person.Address in the AdventureWorks database.
USE AdventureWorks;
GRANT SELECT ON OBJECT::Person.Address TO RosaQdM;
GO
Denying SELECT permission on...
August 1, 2012 at 2:37 am
Yes. You can restrict aceess to individual tables with GRANT/DENY command.
August 1, 2012 at 2:28 am
It means, in the subscriber, there is already a row with primary key value.
You need to fix that row.
After that replication should continue without any issue.
July 31, 2012 at 2:05 am
The reason is query 'exec master..xp_FileReadStart @PARAM_FILENAME, @nHandle output' would be executed under a new session.
The variable @PARAM_FILENAME is not visible in this new session.
July 26, 2012 at 5:50 am
Viewing 15 posts - 136 through 150 (of 1,068 total)