Viewing 15 posts - 2,326 through 2,340 (of 4,820 total)
Take a close look at your expected output for August 8th, and then tell me how and why it's supposed to be that way, considering the values you use for...
August 31, 2017 at 7:02 am
Yep. Move the database to a different disk spindle. If it's on a SAN, things get a tad more complicated, but then you'd have to work with your SAN Admin...
August 30, 2017 at 10:42 am
Case Sensitve collation ?
August 30, 2017 at 10:22 am
Without any of your code to look at, I have no idea what you'll need to do. First order of business after you post your actual query, is to get...
August 30, 2017 at 9:11 am
You can wrap your OPENROWSET into an SSIS package and then either use a derived column transformation, or just set the necessary component settings to not fail that element due...
August 30, 2017 at 9:06 am
Okay, but you used the words "top level" without defining exactly what that means in your environment. We can't even guess as you've provided no useful context. Assuming you have...
August 29, 2017 at 7:56 am
August 29, 2017 at 7:19 am
August 29, 2017 at 6:58 am
It is starting to sound like a data problem. I'd start tracking exactly which tables are involved and then looking at that data, to see if you can find anything...
August 29, 2017 at 6:46 am
You're looking for the functionality provided in Jeff Moden's string splitter named DelimitedSplit8K, and if you're data in NVARCHAR as opposed to VARCHAR, you'll want to get the NVARCHAR version...
August 29, 2017 at 6:38 am
August 29, 2017 at 6:21 am
Try something like this:CREATE TABLE #Table_A (
ProductCode VARCHAR (255),
FranchiseCode VARCHAR (255),
FranchiseGroup VARCHAR (255),
FranchiseValue VARCHAR (255)
);
INSERT INTO #Table_A (ProductCode, FranchiseCode, FranchiseGroup, FranchiseValue)
VALUES ('0001','aaaa','',''),
('0002','bbbb','',''),
('0003','','B1','Value1'),
August 28, 2017 at 8:07 am
August 25, 2017 at 12:10 pm
You put an updlock on a table and then want to read from it in a separate transaction? That just doesn't make any sense. tablock, perhaps, but not updlock.
August 25, 2017 at 11:56 am
August 25, 2017 at 11:50 am
Viewing 15 posts - 2,326 through 2,340 (of 4,820 total)