Search the web
Sign In
New User? Sign Up
sqlcon
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 5855 - 5884 of 6519   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5855
What is the bandwidth the main site and the DR Server.... Because that is going to be critical.I hope DR is not over IPLC... From: sqlcon@yahoogroups.com...
Veer Ji Wangoo
vwangoo
Offline Send Email
Nov 1, 2007
9:04 am
5856
I think with DR u mean disaster recovery server and what is IPLC? Please correct me if i am wrong. Right now the band width of the network is 1 GB. As this...
Akhil Mahajan
dabubcet
Offline Send Email
Nov 1, 2007
12:19 pm
5857
Hi all, i am having a table called Login in which i am having columns login & logout time as datetime columns. By using select...
RAJESHWAR REDDY
rajeshwar_co...
Offline Send Email
Nov 5, 2007
10:52 am
5858
Use functions like DATEADD, DATEPART, DATEDIFF you can get the resulted (sum) value in hours:min:secs Prasad...
Prasad Gelli
prasad_gelli
Offline Send Email
Nov 5, 2007
11:25 am
5859
Hi I have a db with 300+ tables working fine. Now the client wants to include AUDIT on some tables only on specific columns. An UPDATE trigger on the selected...
Prasad Gelli
prasad_gelli
Offline Send Email
Nov 5, 2007
11:34 am
5860
Try this: select sum(datediff(mi,elogintime,elogouttime)/60) as DurationHours from logintable Pavel Alexandrov ... login & ... DURATION i ... duration...
Pavel_Alexandrov
Pavel_Alexan...
Offline Send Email
Nov 5, 2007
4:42 pm
5861
hi, can anybody help me on this topic I have a mySQL query like the following:SELECT wo.CREATEDTIME FROM woThe result is supposed to be a list of date in a...
alphabeta_1985
Offline Send Email
Nov 6, 2007
6:28 am
5862
I Need to update sysdatabases. But i am unable to update it as error "Ad hoc updates to system catalogs are not allowed." Then I tried to execute: USE MASTER ...
Manish Sharma
connect_manish
Offline Send Email
Nov 7, 2007
6:22 am
5863
Hi Manish, Could you let me know the SQL server version and what are the tables you are trying to update? No direct edits to any system information is allowed ...
ram babu
singh_rambabu
Offline Send Email
Nov 7, 2007
10:04 am
5864
i am working on SQL 2000. I need to update sysdatabases, as i have to update category column to 0 as some of the DB are not part of replication, but still its...
Manish Sharma
connect_manish
Offline Send Email
Nov 7, 2007
11:29 am
5865
Not at all recommended... If you still wanted to update... allow updates Option is available in 2000 Check this KB : ...
Madhu K Nair
madhuotp
Offline Send Email
Nov 7, 2007
1:07 pm
5866
Hi SqlCon Members, i have created procedure as below. create proc proc1 as begin select * from emp --dbcc inputbuffer(@@spid) end go exec Proc1 go i need to...
santosh_anu
Offline Send Email
Nov 12, 2007
2:32 pm
5867
Hello Santosh, Use sp_depends SPName , it will give you all objects name , type used in the SP. Regards Pankaj Joshi santosh_anu...
pankaj joshi
pankajjo02
Offline Send Email
Nov 12, 2007
3:22 pm
5868
try this Select distinct name from sysobjects o ,syscomments c where c.text like '%emp%' and o.id = c.id Manish santosh_anu...
Manish Sharma
connect_manish
Offline Send Email
Nov 12, 2007
3:57 pm
5869
Hi I have a table in 2005 and has to be migrated to 2000. Using Import/Export wizard in 2005 the migration is done and found a Trigger, Default values on...
Prasad Gelli
prasad_gelli
Offline Send Email
Nov 13, 2007
12:13 pm
5870
Hi All, I am having server A in Location A,Server B in Location B.Bothare in Windows server 2003,SQl Server 2000.Both servers are having same DataBase named...
RAJESHWAR REDDY
rajeshwar_co...
Offline Send Email
Nov 13, 2007
1:47 pm
5871
Hi You can use los shipping to synconize. For more details how to implement log shipping you can use website sql-server-performance.com or sqlservercentral.com...
karan
karan_lobana
Offline Send Email
Nov 15, 2007
6:19 am
5872
hi, how to retrive a daynumber if date is given in sql server thanks in advanve pha RAJESHWAR REDDY <srajeshwar@...> wrote: Hi All, I am having server A...
phani r
phanisletters
Offline Send Email
Nov 15, 2007
8:32 am
5873
SELECT DAY(GETDATE()) ... From: phani r To: sqlcon@yahoogroups.com Sent: Thursday, November 15, 2007 2:02 PM Subject: MUGH-SQLCON Change a DATE to a day number...
Roji P Thomas
roji_pt
Offline Send Email
Nov 15, 2007
9:52 am
5874
Dear Rajeshwar, you can use : select datepart(dd,getdate()) Best Regards Sunil John ... From: phani r <phanisletters@...> To: sqlcon@yahoogroups.com ...
sunil john
suniljk7
Online Now Send Email
Nov 15, 2007
10:00 am
5875
Thanks Roji i would like to change date to day number the procedure accept daynumber and return date finally i got it ...... can you please try to optimize it ...
phani r
phanisletters
Offline Send Email
Nov 16, 2007
7:15 am
5876
Well, it can be as simple as DECLARE @DayNum Int SET @DayNum = 23 SELECT CONVERT(VARCHAR,(GETDATE() - DAY(GETDATE()))+ @DayNum, 106) Regards Roji ... From:...
Roji P Thomas
roji_pt
Offline Send Email
Nov 16, 2007
10:37 am
5877
Hi Roji, Thanks for reeply your code returns 23rd Nov 2007 but it should return 23rd Jan 2007 becuse 23rd day of 2007 year is not 23rd November it is 23rd Jan...
phani r
phanisletters
Offline Send Email
Nov 16, 2007
12:21 pm
5878
Thats more easy. DECLARE @DayNum Int SET @DayNum = 23 SELECT CONVERT(VARCHAR,CAST(CAST(YEAR(GETDATE()) AS CHAR(4))+'0101' AS DATETIME)+ (@DayNum-1), 106) ... ...
Roji P Thomas
roji_pt
Offline Send Email
Nov 16, 2007
12:42 pm
5879
Thats great thankyou very much regards pha Roji P Thomas <thomasroji@...> wrote: Thats more easy. DECLARE @DayNum Int SET @DayNum = 23 SELECT...
phani r
phanisletters
Offline Send Email
Nov 16, 2007
12:58 pm
5880
Hi Roji/Phani, This can be done in this manner. DECLARE @DayNum Int SET @DayNum = 23 SELECT CONVERT(VARCHAR,GETDATE() - Datepart(y,GETDATE())+ @DayNum, 106) ...
Santosh
santosh_anu
Offline Send Email
Nov 16, 2007
1:01 pm
5881
Hi all, I am planning to start a new company specializing Database Administration (MS SQL, Oracle) If you guys know any Good/best name please reply back to...
Varra Reddy
varra_s
Offline Send Email
Nov 20, 2007
5:24 am
5882
Wonderfull Idea, You should also include datawarehousing, data auditing, data security, data mining, reporting , data analyzing etc to ur scope. _____ From:...
Bineesh Thomas(GMAIL)
bineeshthomas
Online Now Send Email
Nov 20, 2007
5:36 am
5883
Varra, All the best for your new concern. How about "data"? Pls make sure that you address the performance tuning, Master Data Management and database...
J Santhoshkumar
san_spy
Online Now Send Email
Nov 20, 2007
7:09 am
5884
Guys, i have used index tuning wizard in SQL 2000 a couple of times. as i remember i recommends us on a table where should we create a index. i need to do it...
Deepak Garg
deepakgrg
Offline Send Email
Nov 22, 2007
12:12 pm
Messages 5855 - 5884 of 6519   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help