Viewing 15 posts - 3,541 through 3,555 (of 13,462 total)
great job providing the same DDL and Data!
maybe i'm missing the hard part of the question and overlooking the obvious,it, but does this do what you want? a simple union,...
May 3, 2013 at 12:28 pm
this looks right to me:
Imports Excel = Microsoft.Office.Interop.Excel
Private Sub ImportExcel(ByVal PR01filename As String)
Try
xlApp = New Excel.Application
xlApp.Visible = True
...
May 3, 2013 at 12:14 pm
Ben I'm hoping some of my peers may have a better suggestion;
I'm familiar with the free Community verison of DotNetNuke[/url] which is a Content Management Solution featureing suites of web...
May 3, 2013 at 10:02 am
some links i have saved:
adding a sysadmin back toa server:
http://sev17.com/2011/10/22/gaining-sql-server-sysadmin-access/
May 3, 2013 at 7:52 am
you really HAVE to compare differnet queries by their execution plans, and not by their perceived speed.
digging into those details are what gives you an understanding of why there are...
May 3, 2013 at 6:35 am
and the details:
first, you gotta have the ACE drivers installed, look at this post FIRST:
http://www.sqlservercentral.com/Forums/FindPost1407497.aspx
then here's a mockup of the code: there's a couple of issues...I'm ASSUMING every sheet is...
May 3, 2013 at 6:18 am
the devil is in the details, but if xp_cmdShell is available, you can use THAT via tsql to :
1. get the list of files,
2. create a cursor/loop for each of...
May 3, 2013 at 6:04 am
have the desktop application e use some web services you will need to create whichreturn available tickets and another to book tickets.
maybe an additional web service so you can see...
May 3, 2013 at 5:48 am
this blog has a good explanation and the scripts to track down the offending schema:
May 3, 2013 at 5:21 am
Manie My setup for gMail is working fine and sounds to be near-identical to yours, i just tested it again; the only difference seems to be the smtp server i'm...
May 3, 2013 at 5:13 am
and virtually, because we have a sub-select, we can just filter the results right there in the SQL statement:
SELECT
IndivdualId,
City,
...
May 2, 2013 at 2:26 pm
how about changing the drop down into an optional text field...that way if the user KNOWS the ID, they can just type it in;
i'm no SSRS expert, but...
May 2, 2013 at 1:38 pm
one way is to create a view that has one record per Id, then you get jsut the "current" people in TX in your example:
CREATE VIEW CurrentAddresses
AS
SELECT
...
May 2, 2013 at 1:26 pm
i would swear there was a similar post a few months back, and i seem to remember that if a query uses parallelism, you can see this behavior?
May 2, 2013 at 11:48 am
fish that table is for an Oracle definition, and not SQL server.
just creating the table is not enough, don't you need to insert some data into the table before querying...
May 2, 2013 at 10:28 am
Viewing 15 posts - 3,541 through 3,555 (of 13,462 total)