Viewing 15 posts - 1 through 15 (of 320 total)
open the sql server. go in the database properties and close all the connections connected to the database.
June 4, 2010 at 12:07 am
dhaval_dsa (5/14/2010)
@DPID INT
AS
BEGIN
DECLARE
@DPTID INT,
@SAL1 MONEY
SET @DPTID=(SELECT deptid FROM Humans WHERE deptid=@DPID)
SET @SAL1=
CASE @DPTID
...
May 14, 2010 at 1:00 am
Joy Smith San (4/22/2010)
I have a job running at night everyday.
It pulls 2.5 million data from an oracle linked server and insert into tables in SQL Server 2005 datbase.
My...
April 23, 2010 at 12:29 am
Arjun Sivadasan (4/22/2010)
Scenario: There are five databases - db1, db2, db3, db4, db5
In a query i need...
April 22, 2010 at 6:10 am
sachinrshetty (4/20/2010)
So in which shall i pass either in mm/dd/yyy...
April 20, 2010 at 12:24 am
jaype-365633 (2/14/2010)
Thanks a lot kshitij kumar it worked out well, can you please help on joining the tables with two or three databases
in LINQ or iin SQL??
February 14, 2010 at 11:36 pm
select * from <TABLE> where <cOLUMN> not in (nVALUES)
February 14, 2010 at 10:16 pm
create a job in that sql server and set its schedule type to "Start automatically when SQL server agent starts" and set the notification to Email / Page or net...
February 14, 2010 at 10:12 pm
you want data caching at database level or at the application level????
February 14, 2010 at 9:56 pm
if there is no other option than Truncate, then change the model from "Full" to "Simple" so that the database could contain the active portion of the log, then take...
February 9, 2010 at 2:18 am
raju.tanneeru (2/1/2010)
currently my projects is in SQL 2005 and the project is moving to SQL 2008. when i am working on redesigning the data base i...
February 1, 2010 at 10:39 pm
Yes adding RAM will help but that will also depend on the cache it will provide.
RAM has its own limitations.
Better you improve the application model
February 1, 2010 at 10:35 pm
check the query execution plan and based on that you will come to know the reason probably.
February 1, 2010 at 10:09 pm
sanketahir1985 (1/5/2010)
1. check for free space on drive where tempdb is stored
&
2. Try to truncate log of tempdb only if no users are using tempdb database.
3....
January 5, 2010 at 11:23 pm
Viewing 15 posts - 1 through 15 (of 320 total)