Viewing 15 posts - 241 through 255 (of 1,109 total)
Well, database evolution is sort of at the center of my interest, and I've been working on such a solution. On http://www.simple-talk.com/sql/database-administration/source-control-and-databases/ I describe some of the problems you are...
April 18, 2008 at 1:46 am
Jonathan Mallia (4/18/2008)
I have an update trigger on a table and when I run a stored procedure that updates the mentioned table, I get the error "Could not continue...
April 18, 2008 at 1:27 am
PatrickSimons (4/17/2008)
April 17, 2008 at 8:47 am
molecule_kaab (4/17/2008)
Thank you very muchIt work very well. 😀
Well, I knew I missed something, and I was not handling 0's properly after the decimal point. So an updated (but...
April 17, 2008 at 8:17 am
As Kent said, you could use identity to do this if you can use temporary tables. Using identity would be significantly faster on 2000 than using triangular joins. An example...
April 17, 2008 at 6:53 am
jul3son (4/17/2008)
I am having problems with UID please advised.
First run
EXEC sp_change_users_login 'Report'
This will tell you which users got out of sync. After that you can add the relevant login and...
April 17, 2008 at 6:30 am
Ok, probably I missed something, but for a start it will do 🙂
CREATE FUNCTION myFormat ( @a1 FLOAT )
RETURNS VARCHAR(100)
AS BEGIN
DECLARE @result VARCHAR(100)
...
April 17, 2008 at 3:26 am
molecule_kaab (4/17/2008)
I wanna select one column which its datatype is float.how can I insert comma when it is more than thousand eg. 1,000 25,000
One could use the...
April 17, 2008 at 2:52 am
Sorry, next question, is your mirroring actually running?
Can you check the result of
select * from sys.database_mirroring where database_id=db_id()
Regards,
Andras
April 11, 2008 at 2:47 am
M Chabot (3/14/2008)
April 11, 2008 at 2:27 am
JACKEY CHENG (4/11/2008)
so i want to shrink the log in primary server...
April 11, 2008 at 1:53 am
Jason Selburg (4/10/2008)
April 10, 2008 at 8:17 am
Oops, Jason was faster 🙂
(one difference is in our solutions is that it is enough to have one CTE expression), so you now have two solutions 🙂
Regards,
Andras
April 10, 2008 at 7:10 am
You would need to use two pivots, e.g.
WITH cteQuarterSales
AS ( SELECT DATEPART(qq, OrderDate) AS Quarter,
...
April 10, 2008 at 7:09 am
jul3son (4/10/2008)
Hi!Please help me how to restore sql 2000 DB to sql 2005 which is on another computer?
Take a backup of the 2000 database if you do not already have...
April 10, 2008 at 5:03 am
Viewing 15 posts - 241 through 255 (of 1,109 total)