Viewing 15 posts - 1,666 through 1,680 (of 3,489 total)
Mike,
Why do you need a cursor for this? Can't you just do a basic upsert? Here's some fun reading for you:
December 14, 2016 at 5:54 pm
Please define "depth level".
Sounds like this is a great candidate for SSRS.
December 13, 2016 at 2:55 pm
If you were going to automate this, wouldn't it require at least a one-way trust between the two domains? SneakerNet isn't really automation...
December 11, 2016 at 10:42 pm
What version/edition of SQL Server are you running?
You could use PowerShell...
Tim Smith
December 11, 2016 at 3:59 pm
Read Jeff's article on DelimitedSplit8K[/url], which contains a download that has the complete DelimitedSplit8K code. (Read the article, and the link is... <should I tell?> ) Once you...
December 6, 2016 at 9:18 am
If you are using Windows authentication, then security is handled by Active Directory. You create users and then add them to Groups, and assign the permissions to the groups...
December 2, 2016 at 8:34 pm
Good point! Especially if you use a pivot table or PowerPivot... but you need Excel 2010 or later for PowerPivot.
December 2, 2016 at 8:33 pm
You could always just add a column to the addresses table to indicate what type it is (home or work). Then you would just write a case statement to...
December 2, 2016 at 10:14 am
Kazmerelda (12/2/2016)
What...
December 2, 2016 at 9:55 am
" However if I want domain user testdomain/testuser to have access that has been user within the entire database for that user " ???
You can create users and groups in...
December 1, 2016 at 7:13 pm
You'd have to do something in your stored procedure.
Here's an example of getting all the invoices with fewer than 3 line items:
SELECT i.InvoiceID
FROM Sales.Invoices i INNER JOIN Sales.InvoiceLines il
ON i.InvoiceID...
December 1, 2016 at 9:38 am
Okay... rereading this... A Calendar table won't necessarily work. I think this will only work if you know what month all of the absents occurred in. If you can't...
December 1, 2016 at 7:30 am
Please do everyone a favor and read this article Forum Etiquette: How to post data/code on a forum to get the best help[/url]
Saying please and thank you without actually listening...
November 30, 2016 at 9:13 pm
Oh, I get it... you're trying to do the matrix as a crosstab or whatever inside SQL instead of doing it in SSRS. Doing it in SSRS is really...
November 30, 2016 at 1:22 pm
Maybe I'm missing something, but if you have a bunch of events over a span of time, you could have EventType on columns, Months on rows, and then a count...
November 30, 2016 at 8:48 am
Viewing 15 posts - 1,666 through 1,680 (of 3,489 total)