Viewing 15 posts - 1 through 15 (of 23 total)
the above solution is correct if you want to go with and maintain data integrity with normal forms.
but there are scenerios where in due to some constarints you are unable...
May 9, 2013 at 5:31 am
something like this:-
SELECT SUM(UnitPrice)
FROM
(SELECT TOP 3 UnitPrice FROM Sales.SalesOrderDetail
ORDER BY ModifiedDate DESC )t
April 25, 2013 at 7:56 am
wat wa sthe solution to overcome the problem?
Please share.
April 24, 2013 at 12:53 am
alright.. so here you go..
I gotthe solution though while I was creating this test data. but this is just for the refrence for everybody who visited the post and merely...
April 19, 2013 at 4:37 am
well i tried that also it didnt work
what i noticed after an hr of R&D is
select * from email_history_log ehl (nolock)
join email_history ehe (nolock) on ehe.message_stub = ehl.message_stub
join survey_email_history ehs...
April 18, 2013 at 5:57 am
Why the use of variables explicitly?
whats the benifit of using variables?are the two different in performance?
February 16, 2012 at 3:16 am
The one which u are using is a global temp table Global temporary tables are visible to any user after they are created; and they are deleted when all users...
January 23, 2012 at 11:08 pm
genarally the dbcc shrinkfile command is use only to shrink the files when desried... say suppose the file length > 1GB(eg)
January 23, 2012 at 11:04 pm
thanks all this has been done.
I used xp_cmdshell 'del....' command
🙂
December 30, 2011 at 3:17 am
Because thats the approach I have been asked to work,
Earlier we used Maintenance Plan but now we have our own script and to delete old backups also I need...
December 28, 2011 at 3:00 am
No I m not using Maintainence Plan I have a generic SP that creates backup so I need another SP to delete the old files which are of no longer...
December 28, 2011 at 2:31 am
well actlly sorry for not explaining that properly i mean # of characters like fro instance the string is :--
SQLSERVER
result sholuld be like :--
S-2
Q-1
L-1
E-2
R-2
V-1
string is nvarchar..
July 26, 2011 at 2:37 am
Viewing 15 posts - 1 through 15 (of 23 total)