Viewing 15 posts - 736 through 750 (of 2,458 total)
The way I troubleshoot this kind of thing is to run each section of the query individually until I get the error that is being returned when I run the...
May 10, 2016 at 8:51 am
drew.allen (5/9/2016)
This is not valid xml, because there is no single root element. In fact, you have text that is not contained in an element at all.Drew
It's not a...
May 9, 2016 at 11:58 am
This should do the trick. This solution uses delimitedsplit8K which is referenced in my signature. Note my comments.
USE tempdb
GO
-- ingest the text as varchar(8000) or varchar(max) is you might receive...
May 9, 2016 at 10:47 am
Try resetting the password and try again or check the username spelling.A bad username or password or the only reasons Ice ever seen that error. You could also try a...
May 6, 2016 at 7:07 pm
jollyegeorge (5/6/2016)
I get error for 'Invalid object name 'dbo.DelimitedSplit8K'Yes it does, all the summary line has these bold values.
DelimitedSplit8K is not built in, you need to create it. For...
May 6, 2016 at 7:01 pm
SilverBack (4/22/2016)
I can not get results they just come back blank. Any ideas by...
May 6, 2016 at 6:45 pm
ffarouqi (5/5/2016)
Alan.B (5/4/2016)
First, the message is pretty clear. The SSIS package is failing because the login for SA, inside at least one of your SSIS connection...
May 5, 2016 at 9:16 pm
There's the old joke, "guy goes to the doctor and says, 'Doc, it hurts when I do this...' so the doctor says, 'don't do that'."
I digress, can you post the...
May 5, 2016 at 8:18 pm
Here's a fun solution that uses all three T-SQL set operators.
DECLARE @table1 TABLE (col1 char(3) unique);
DECLARE @table2 TABLE (col1 char(3) unique);
INSERT @table1 VALUES ('a 1'), ('b 2'), ('c 4');
INSERT @table2...
May 5, 2016 at 8:14 pm
This solution assumes that your sequences are always going to be 6 characters long...
Taking Luis' brilliant solution and turning it into a scalar UDF like this:
CREATE FUNCTION dbo.SeqRank (@number CHAR(6))
RETURNS...
May 5, 2016 at 7:50 pm
It's interesting, a Google search does not return any useful info. Apparently Microsoft has pulled anything abut 2005. Another reason to upgrade I suppose.
All I can say is, give it...
May 5, 2016 at 6:13 pm
I have had this exact same problem before. If you're developing the report in SSDT then restarting SSDT then trying again sometimes resolves the problem. Sometimes the only thing you...
May 5, 2016 at 5:44 pm
May 5, 2016 at 1:37 pm
Viewing 15 posts - 736 through 750 (of 2,458 total)