Viewing 11 posts - 16 through 26 (of 26 total)
Using below link you can easily create backup of database and easily found the .bak file because here you can provide the path where you want to save your backup...
April 21, 2013 at 11:28 pm
Yes I have read article and found the solution
Thanks all.
Regards,
Arjun
March 28, 2013 at 6:51 am
Hello Kingston Dhasian,
I have tried this query but it has show error "Invalid column name DS.ITEM".
I have converted this query as my table structure.
Regards,
Arjun
March 28, 2013 at 4:53 am
thanks jasone
March 28, 2013 at 1:34 am
Thanks you all...
One more thing i want to ask that if i have changed max server memory in sql server property then is it must to restart the service of...
March 28, 2013 at 12:47 am
please try now
SELECT temp.EMPLOYEEID, temp.FIRSTNAME, temp.LASTNAME, temp.STARTDATE, temp.EMAILADDRESS, temp.ORGANIZATIONID, temp.JOBTITLEID From
(
SELECT row_number() OVER (PARTITION BY employee.EMPLOYEEID ORDER BY ACTIONDATE) as 'RowNumber',
employee.EMPLOYEEID, employee.FIRSTNAME, employee.LASTNAME, employee.STARTDATE, employee.EMAILADDRESS, org.ORGANIZATIONID, job.JOBTITLEID
FROM linkedServer.linkedDB.dbo.AUEMPLOYEE as employee
RIGHT...
March 26, 2013 at 2:27 am
Try this query it will work
SELECT temp.EMPLOYEEID, temp.FIRSTNAME, temp.LASTNAME, temp.STARTDATE, temp.EMAILADDRESS, temp.ORGANIZATIONID, temp.JOBTITLEID
(
SELECT row_number() OVER (PARTITION BY employee.EMPLOYEEID ORDER BY ACTIONDATE) as 'RowNumber',
employee.EMPLOYEEID, employee.FIRSTNAME, employee.LASTNAME, employee.STARTDATE, employee.EMAILADDRESS, org.ORGANIZATIONID, job.JOBTITLEID
FROM linkedServer.linkedDB.dbo.AUEMPLOYEE...
March 25, 2013 at 11:28 pm
select * from sys.indexes
where object_id = (select object_id from sys.objects where name = 'TableName')
using this query u can check the index that is exist on your table.
Regards,
Arjun
March 25, 2013 at 8:13 am
CONVERT(VARCHAR(10), cast(StartDtID AS datetime), 101)
Regards,
Arjun
March 25, 2013 at 7:34 am
This query gives output as you required please try
SELECT temp.BackupReqCode,max(case WHEN temp.ServerFunction='IS' THEN temp.CountOfOpsServer ELSE 0 END ) as 'CountOfISServer',
max(case WHEN temp.ServerFunction='Ops' THEN temp.Countofserver ELSE 0 END...
March 25, 2013 at 6:22 am
Viewing 11 posts - 16 through 26 (of 26 total)