Viewing 15 posts - 256 through 270 (of 2,008 total)
If it’s in the record, you should accept it as it is. Isn’t it valid data in business terms?
For example, a csv or xls can have a memo / notes...
January 23, 2012 at 7:40 am
SQL Kiwi (1/23/2012)
Dev (1/23/2012)
This should be helpful...Replicating Partitioned Tables and Indexes
Thanks Dev, that is exactly the link Bhuvnesh needs to read.
Just trying to help. Thanks for the appreciation...
January 23, 2012 at 7:35 am
1) what would be the appropriate design for both source and target DW to handle hard deletes regularly on the source system?
As Paul already said, delete on source doesn’t...
January 23, 2012 at 7:30 am
This should be helpful...
Replicating Partitioned Tables and Indexes
January 23, 2012 at 7:15 am
I am trying to guess the reason for Jeff’s question. I received few csv files from customer couple of day’s back, that had similar structure. It was a result of...
January 23, 2012 at 7:12 am
Please read my post again.
Run the given query, you will find there are NULL values in productsubcategoryid.
Your query is grouping the data based on productsubcategoryid thus there is a group...
January 23, 2012 at 7:04 am
select *
from production.product
where productsubcategoryid is null
ProductSubcategoryID has NULL values in Production.Product table.
Per BOL:
Null values are treated as the lowest possible values.
For More: http://msdn.microsoft.com/en-us/library/ms188385.aspx
January 22, 2012 at 4:01 am
I assume you want to dedicate 64GB only for SQL Server operations & even if OS / other application needs, it shouldn’t release. Am I guessing it right?
Per Lutz explanation,...
January 22, 2012 at 2:46 am
Nope. See the screenshot...
January 21, 2012 at 5:12 am
Apologies, I misread ‘DB for Monitoring’ as 'DB Mirroring'.
January 20, 2012 at 9:02 am
With the sample data & DDL that you shared with us, it’s difficult to come up with good solution. I agree with above recommendation & join them to suggest you...
January 20, 2012 at 8:57 am
Database Mirroring, 12 GB log files, Full Recovery Model, 6 hrs Log Backup & low disk space cannot go all together.
As everyone already pointed out, you must set up the...
January 20, 2012 at 8:43 am
I don’t find any issue in your script. It works fine on my system.
declare @columnlist nvarchar(max)
set @columnlist =''
select @columnlist = @columnlist + cast(column_name as varchar(128)) + ', '
from information_schema.columns
where table_name...
January 20, 2012 at 8:34 am
Gray screen on RDC indicate either server is heavily loaded or got hung. In either case it’s bad. If server downtime is acceptable for sometime, a restart might give you...
January 20, 2012 at 8:20 am
Viewing 15 posts - 256 through 270 (of 2,008 total)