Viewing 15 posts - 1 through 15 (of 21 total)
Thank you so much for all the help!
December 28, 2018 at 4:07 pm
I'm sorry - I'm pulling a subset of records into a Temporary Table.
So, the XML parsing is from the temporary table
December 27, 2018 at 4:10 pm
So, now instead of using an XML Variable, can you use this with a table? The data is in a table with an activation code associated with multiple licenses stored...
December 27, 2018 at 11:17 am
Thank you SO MUCH! That worked perfectly!
December 27, 2018 at 10:26 am
The only message I get is:
Msg 3013, Level 16, State 1, Line 1
RESTORE HEADERONLY is terminating abnormally.
July 3, 2018 at 10:05 am
Thank you for the suggestion. We'd like to avoid any 3rd party software to pull AD data. I've always been able to just pull it directly and would like to...
May 29, 2018 at 11:07 am
April 9, 2018 at 10:10 am
I did and I think the issue is that the tables are dbo and the views are a [BI] schema. I've seen posts where the only option was to create...
April 6, 2018 at 2:22 pm
Update to my post - I found the group that was giving me grief. I had checked the db_datareader in the membership group to by windows group . Even though...
April 6, 2018 at 11:12 am
Hi John
This is what I tried:
DECLARE @TEXT varchar(50)
SELECT @TEXT = 'HELLO'
SET LANGUAGE 'Spanish'
SELECT @TEXT
It just gives me back 'HELLO'.
February 5, 2018 at 11:44 am
I didn't think it would be the 'best practices' way of doing things. Especially if the dataset is big, pulling in the same dataset twice seemed like a lot...
August 26, 2016 at 4:14 pm
Sorry about that...let's try this:
CREATE TABLE #tMILESTONE (
CustomerID INT NULL,
LoadDate datetime NULL
);
WITH CTE AS
(
SELECT 11011 AS CUSTOMERID, GETDATE() AS LoadDate
UNION ALL
SELECT 11011, LoadDate + 1
FROM CTE
)
INSERT #tMILESTONE...
March 17, 2014 at 3:43 pm
I can't add the column b/c I need to query all records between the 1st and 2nd date of the lookup table and add the column 30 to it to...
March 17, 2014 at 3:08 pm
Yes. I did it myself and it didn't work so I found a walk through example and that didn't work. So, I'm at a loss
December 15, 2010 at 1:02 pm
Viewing 15 posts - 1 through 15 (of 21 total)