Viewing 15 posts - 14,791 through 14,805 (of 26,486 total)
Hard to tell from here, can't see what you see. Please read the first article I have referenced below in my signature block regarding asking for help. Follow...
January 25, 2011 at 9:03 pm
I'm going to go out on a limb here and say it may be a bug. I tried it on a check constraint on a table in AdventureWorks, and...
January 25, 2011 at 8:47 pm
I would not put them on the same spindle as the OS and paging file. I would still give them their own spindle to reside on, separate from the...
January 25, 2011 at 8:36 pm
Not worth the hassel. You can use SQL Server Express (free!) as a witness for database mirroring. Why would I pay for this functionality when it is easily...
January 25, 2011 at 8:32 pm
Does the following snippit help?
declare @TestStr varchar(128) = 'TRITON9700 L9700031288172 10-07-09 | EDC TRITON 9700 CASH DISPENSER';
select
SUBSTRING(@TestStr, PATINDEX('%[0-9][0-9]-[0-9][0-9]-[0-9][0-9]%|%',@TestStr), 8) as CharDate,
CAST(SUBSTRING(@TestStr, PATINDEX('%[0-9][0-9]-[0-9][0-9]-[0-9][0-9]%|%',@TestStr),...
January 25, 2011 at 8:22 pm
Mike01 (1/25/2011)
This is a double post. Please reply to original post.http://www.sqlservercentral.com/Forums/Topic1053496-149-1.aspx
Hot link to other post: http://www.sqlservercentral.com/Forums/Topic1053496-149-1.aspx
January 25, 2011 at 7:56 pm
Little Nick (1/25/2011)
This is my syntax
BACKUP LOG CCN TO DISK='C:\2nd Database\Backup\CCN_log.bak'I hope it's accurate
Hopefully you have read all of the info regarding BACKUP LOG. Your command above will create...
January 25, 2011 at 7:55 pm
Little Nick (1/25/2011)
My final decision is
1. I choose Recovery Model is FULL
Based on article quote "Full recovery can be difficult to manage as the...
January 25, 2011 at 7:29 pm
Lynn Pettis (1/25/2011)
ada.xi (1/25/2011)
Cdec ---Convert to Decimal.In what? As I said, I can't find it anywhere in Books Online.
Nevermind, I found it in the Visual Studio Help System,...
January 25, 2011 at 7:23 pm
ada.xi (1/25/2011)
Cdec ---Convert to Decimal.
In what? As I said, I can't find it anywhere in Books Online.
January 25, 2011 at 7:10 pm
ada.xi (1/25/2011)
I try to give a expression to round some filed like below,
Round(Fields!unit_price.Value, Fields!Dom_Price_Places.Value)
...
January 25, 2011 at 6:54 pm
Also, from SQL Server 2008 BOL:
Important:
The Pager and net send options will be removed from SQL Server Agent in a future version of Microsoft SQL Server. Avoid using...
January 25, 2011 at 6:47 pm
IIRC, pages are simply not sent outside the stated hours. A good place to check this out would Books Online, the SQL Server Help System.
January 25, 2011 at 6:44 pm
cabrerajm (1/25/2011)
Need help with this update query statement. I am trying to update multiple records with this update query. It looks something like this:
update...
January 25, 2011 at 6:29 pm
I have written code that does just this, however, just like Gail I'd like to know the business case behind doing this. In addition, I am curious to know...
January 25, 2011 at 6:26 pm
Viewing 15 posts - 14,791 through 14,805 (of 26,486 total)