Viewing 15 posts - 1,051 through 1,065 (of 1,655 total)
I hope I understood you right, but I think this code should work.
But be ware that in you sample data there are 3 paces between the monetary values and the...
November 23, 2007 at 8:01 am
JanM (11/21/2007)
...the name is like cosy_backup_200711182200.bak what is over 2 days old but isn't deleted.
Jan,
two possible reasons spring to my mind.
First of all it is possible that the backup...
November 21, 2007 at 9:00 am
Here's the link for 2005 which clearly says that the data must be aggregated by SUM.
http://msdn2.microsoft.com/en-us/library/ms145568.aspx
Markus
November 21, 2007 at 8:03 am
When running an Optimization Job or basically DBCC REINDEX it's always possible that a user process blocks the job. If a clustered index is being rebuilt, an exclusive table lock...
November 19, 2007 at 8:30 am
In SQL 2005 you can define DDL_Triggers and Event_notifications to catch these type of actions. See BOL for details.
But even if you haven't defined any of those the default...
November 19, 2007 at 4:50 am
Suresh B. (11/19/2007)
For moving use databases there are two options:1) detach/attach
2) backup/restore
Don't forget the "copy database" option.
Markus
November 19, 2007 at 2:02 am
Thanks Hans,
that's exactly what I was looking for.
Markus
November 14, 2007 at 7:38 am
Andras,
thanks for the response, but this function returns all the numbers from the string. Also it goes through the string one character at the time and I was hoping for...
November 14, 2007 at 4:02 am
As the others already said, the answer is wrong.
Or should I say BOL is not always reliable?
November 14, 2007 at 1:35 am
Have a look at http://www.sqlis.com
November 13, 2007 at 5:11 am
The error says
"There is already an object named 'MANAGER' in the database."
So the object doesn't have to be a table. I suggest look in sys.objects
for any objects with...
November 13, 2007 at 2:08 am
Add an expression to the row like this:
=IIf((RowNumber("table1") Mod 2), "lightblue", "blue")
Just replace the colours with thise you want.
Markus
November 12, 2007 at 6:13 am
Your code lis fine, but it seems like you mdf file is corrupted.
Do you have any backup of the database? If yes try to restore it and run DBCC CHECKDB...
November 12, 2007 at 5:43 am
Actually the "Lock pages in memory" option only works with SQL 2005 Enterprise edition. See also this article http://support.microsoft.com/kb/918483
The standard edition simply ignores the setting.
You should also read this: http://sqlblogcasts.com/blogs/tonyrogerson/archive/2007/05/03/using-64-bit-sql-server-2005-lock-pages-in-memory.aspx
Markus
November 12, 2007 at 5:36 am
HKwai (11/9/2007)
These things shouldn't make a difference I believe...
I can assure you they do. SP2 made some changes to the scripting options and also to SSMS (Customr reports, Object Explorer...
November 9, 2007 at 8:14 am
Viewing 15 posts - 1,051 through 1,065 (of 1,655 total)