Viewing 15 posts - 1 through 15 (of 57 total)
Thanks Kevin.
Can you please tell me how to have multiple disks in AWS RDS. We are using SSD based storage. AFAIK in RDS we don't provide access to disks &...
August 30, 2016 at 9:25 pm
The read latency is 32 ms & write latency is 95 ms for tempdb data file & for tempdb log file it is 8 for read & 45 for write...
August 30, 2016 at 1:13 am
I executed sp_whoisactive during the execution and there was no blocking at that time. We don't have FK at our database.
August 29, 2016 at 7:31 am
Thanks Gila.
Will try the second option.
December 29, 2014 at 2:02 am
I tried SWITCH partition back from non-partitioned to partitioned table but that fails because of different FG.
I wrote a script to pull the data of date basis and populate to...
December 29, 2014 at 2:01 am
Thanks Bhuvnesh.
But here my table (lets say T1) is already partitioned till 2014-01-01 but the data (~600M) which comes after 2014-01-01 goes to PRIMARY filegroup.
Now to add more partitions to...
December 29, 2014 at 1:50 am
You can use "Launch Database Mirroring Monitoring" from SSMS by right clicking on database->Tasks.
Also the following query will provide the performance counters:
select * from sys.dm_os_performance_counters WHERE [object_name] LIKE...
July 9, 2014 at 1:25 am
Did u really get the desired output from the SELECT statement you posted. I am getting the error when i executed those queries.
When I replaced COUNT(*) with ROW_NUMBER() then A...
June 26, 2014 at 12:18 am
Try this, using Full-text search:
CREATE TABLE tblmessage (ID INT IDENTITY(1,1) NOT NULL,[Description] VARCHAR(400))
INSERT INTO tblmessage([Description])
VALUES('duplicate')
INSERT INTO tblmessage([Description])
VALUES('Record already deactivated by another user')
INSERT INTO tblmessage([Description])
VALUES('Record already activated by another user')
INSERT INTO...
April 17, 2014 at 5:09 am
Share the execution plan of the query.
Also check whether the table(s) has required index(s).
February 21, 2014 at 10:40 am
try this while assigning the final value to @d
Select @d= convert(varchar,DateAdd(HH,@Diff,@d),120)
February 20, 2014 at 9:55 am
Can u provide the sample output which u need?
June 28, 2013 at 12:43 am
Thanks all for your valuable suggestion!!
I found that Microsoft provides “SQL Server in Windows Azure Virtual Machine” which provides full SQL Server box product features and gives the administrator full...
March 15, 2013 at 7:00 am
Can't you just truncate the target table and reload it again instead of checking whether the record exists or not?
This will give you a huge boost from the performance point-of-view.
March 11, 2013 at 5:25 am
I think you are at target database and trying to get the data (source table along with other tables at source database) using linked server.
Can you try other way around...
February 5, 2013 at 5:47 am
Viewing 15 posts - 1 through 15 (of 57 total)