Viewing 15 posts - 106 through 120 (of 330 total)
varunkum (12/29/2010)
I get "ORA-01843: not a valid month" error. ENTRY_DATE is date type. Why do i get this error. Please help me .Thank...
December 29, 2010 at 11:17 am
GSquared (12/28/2010)
That will generate negative hours if it's after noon. For example, 2 PM will end up as -2 PM. Not sure that's what you want.
Also, that kind...
December 28, 2010 at 1:14 pm
simflex-897410 (12/28/2010)
The code below grabs only month from getdate() and then day and year are static.
Given the code below, I get 12/2/2010 then minutes, seconds and...
December 28, 2010 at 12:25 pm
TheSQLGuru (12/28/2010)
December 28, 2010 at 11:46 am
Hi
Have a look at CDC[Change Data Capture]
http://msdn.microsoft.com/en-us/library/bb522489.aspx
This will help u out ,which is added new feature in SQL Server 2008
Thanks
Parthi
December 28, 2010 at 11:24 am
Hi,
Have a look at this
declare @Temp table(Rid int identity,Col1 varchar(20),ddate datetime)
Insert into @Temp
Select 'Hi',GETDATE()
Union all
Select 'This is',GETDATE()
Union all
Select 'Test',GETDATE()
-- Case :1
Select Case When Col1='Hi' then 'Hello'+'...
December 28, 2010 at 8:58 am
gttred (12/26/2010)
Hi,Is it possible to create report on the secondary server configured for log shipping? Please let me know.
Thanks
Have a look on this
http://msdn.microsoft.com/en-us/library/ms189572.aspx
Thanks
Parthi
December 27, 2010 at 1:53 pm
Hi
Thanks for your query with Merge join New thing learned today on this.i have heared on this but not worked with data but now it also has been done...
December 22, 2010 at 11:21 am
ns_18 (12/21/2010)
If ther is any duplicate data then my SQL should run and find the duplicate rows and then delete them automatically.
Do you...
December 21, 2010 at 3:06 pm
If you are using 2005 or 2008
Then use GROUP BY
A general GROUP BY clause includes GROUPING SETS, CUBE, ROLLUP, WITH CUBE, or WITH ROLLUP.
A simple GROUP BY clause does...
December 21, 2010 at 2:57 pm
ns_18 (12/21/2010)
If ther is any duplicate data then my SQL should run and find the duplicate rows and then delete them automatically.
Do you...
December 21, 2010 at 2:35 pm
saidapur_satish (12/21/2010)
After full backup all pages are emty after full backup we insert any thing it will store page no. 6 (SAM page).
...
December 21, 2010 at 2:08 pm
saidapur_satish (12/21/2010)
Every time my boss restoring the MASTER DATABASE, i don't no if i ask he told me MASTER DATABASE is corrupted...
can any one tell...
December 21, 2010 at 1:55 pm
David Benoit (12/21/2010)
Yes, differential backups are cumulative in that they hold all the changes since the last full. So, you do not have to restore all the differential backups.
Yes...
December 21, 2010 at 1:44 pm
Viewing 15 posts - 106 through 120 (of 330 total)