Viewing 15 posts - 1 through 15 (of 158 total)
No one. However this is a Telco report on CDR's :- CALL DATA RECORDS.
WE HAVE BILLIONS OF ROWS IN OUR DATABASE. This is a small dataset with parameters. I need...
May 6, 2011 at 8:03 am
Why not just use if exsists?
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Employee]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Employee]
February 21, 2007 at 3:34 am
Here a quick and dirty way....
(depending how many rows are in employee)
CREATE TABLE [dbo].[TEMP#] (
[ID] [int] IDENTITY (1, 1) NOT NULL ,
[employee_id] [int] NULL ,
[Salary] [int] NULL
) ON [PRIMARY]
INSERT...
February 21, 2007 at 3:21 am
IMHO Is not pivot in sql 2005 the better option for sql 2005?
May 10, 2006 at 5:43 am
Hello
where contains(OmMemo,' "W034" ')
That should work
March 9, 2006 at 11:45 pm
Try this....
Go to the servers SERVICES and look for a SQLSERVERAGENT service. Make sure that its start up type is set to automatic.
January 27, 2006 at 2:13 am
Is the server clustered? If so you must manage start it with cluster services ....
January 27, 2006 at 12:04 am
The xp_sendmail proc uses SQL Mail if the profile is not set up it cannot work. Have you actually seen the other procs work?
January 26, 2006 at 7:08 am
I do not know MOM. But in the mean time,untill someone who knows MOM replies, did you check the SQL Server logs for any errors on the database? Do your...
January 26, 2006 at 6:39 am
I do not have any databases that are larger than 1TB. I suppose it is just trial and error. Good luck!
January 26, 2006 at 6:22 am
Hi,
Using Enterprise Manager click on support services, right click on SQL Mail.
The SQL Mail Configuration form has Profile Name and test button. What happens if you click the test button?
January 26, 2006 at 6:05 am
When you run a sp from QUERY Analyser it runs with your account.
When you schedule a job it runs by the owner specified in the general tab on the job....
January 26, 2006 at 2:42 am
You should have another table with the managers id's I called it manager. Then you join like this........
SELECT LOGON.userid,LOGON.Firstname,LOGON.lastname,LOGON.email,MANAGER.FirstName,MANAGER.LastName
FROM LOGON INNER JOIN
MANAGER ON LOGON.managerID = MANAGER.UserID
January 26, 2006 at 2:26 am
Viewing 15 posts - 1 through 15 (of 158 total)