Viewing 15 posts - 16 through 30 (of 94 total)
And the error message also please...?
January 1, 2008 at 3:14 am
In Enterprise Manager, expand the relevant server and get to the appropriate login under the Security folder. Right-click on the login and get the properties. Under the General tab select...
December 31, 2007 at 4:28 am
As far as I know you cannot create any system stored procedures in SQL Server, though you can create your own stored procedures and name them with a 'sp_' prefix....
December 31, 2007 at 4:22 am
It should, shouldn't it, if you just modify it a little to:
UPDATE Emp
SET [Level] = REPLACE(SPACE([Star])),' ','*')
December 31, 2007 at 3:42 am
Well, you could use some sort of looping using cursors or CLR functions made using C# or so, but I do not see any advantage in not using REPLICATE.
December 31, 2007 at 3:02 am
Hi,
Would you be able to submit the error message in full?
Regards
December 31, 2007 at 2:50 am
Hi, you could use the REPLICATE function.
E.g.:
UPDATE [Emp]
SET [Stars] = REPLICATE('*', [Level])
Regards
December 31, 2007 at 2:29 am
Try these steps out:
1. Create a temporary table, with the following fields: Employee_No, Date and Shift.
2. Add the Employee_No, StartDate and Shift from the Holiday table, as a record into...
December 20, 2007 at 2:47 am
You could try using the DTS Import/Export Wizard in SQL Server 2000, which would be the easiest way to transfer the data from your table to the Excel file
December 20, 2007 at 2:18 am
December 20, 2007 at 2:14 am
Yes, you could do this, by using the PIVOT statement. For syntax and usage of this keyword refer Books Online.
Cheers.
December 20, 2007 at 2:11 am
Hi,
You could also use the Slowly Changing Dimension task for this purpose.
Cheers
December 13, 2007 at 11:07 pm
Yeah, I too feel that the second options is better.
October 8, 2007 at 6:58 am
From the time I got into databases, it had always been SQL Server for me. And from the time I got into SQL Server, it had always been SQLServerCentral all...
October 5, 2007 at 4:59 am
Hi,
Could you be more specific about your question? You could certainly use the system variable System::MachineName. But I would need to know where (i.e. what task(s)) you need to pass...
October 5, 2007 at 4:42 am
Viewing 15 posts - 16 through 30 (of 94 total)