Viewing 15 posts - 181 through 195 (of 268 total)
NineIron (5/1/2014)
May 1, 2014 at 6:22 am
Before I answered this question, I read
It reads, in part:
The hash join has two inputs: the build input and probe input. The query optimizer assigns these roles so that the...
May 1, 2014 at 6:15 am
It's complicated. Lots of things to consider, e.g.
1. Can any indices be used to join on?
2. What do the statistics say?
3. Is the predicate(s) simple or not-so-much and are...
April 30, 2014 at 1:18 pm
If you post the following:
1. Create table ... -- for all tables in the queries
2. Insert into ... -- to populate the tables with sample data
3. expected results
we can take...
April 30, 2014 at 11:49 am
Why not just have two textboxes? The first one has the string 'Checking' in it. The second one has the value. You can set the formatting property...
April 30, 2014 at 10:39 am
How many groups (ssn) can you have? Is it reasonable to build the parsing inline or maybe break it up into a temp table based on the sections beginning...
April 30, 2014 at 7:42 am
I just changed your table slightly:
create table #sample (rowguid int identity ,id_frm bigint ,id_to bigint)
using bigint instead of int. With that in place, the rest of your queries work...
April 30, 2014 at 6:57 am
Use bigint. And you don't need the dynamic SQL:
create table #sample (rowguid bigint identity ,id_frm bigint ,id_to bigint)
insert into #sample values( 1,5)
insert into #sample values( 7,13)
insert into #sample values(...
April 30, 2014 at 6:09 am
nick.latocha (4/30/2014)
April 30, 2014 at 5:58 am
I don't really understand the one-to-one mapping between users and databases. Please explain a bit more what the databases are used for and why you need one per user....
April 29, 2014 at 10:28 am
Please post some sample data in the form of DDL (CREATE TABLE ...) and DML (INSERT INTO ...) along with the query you have so far and the output you...
April 29, 2014 at 8:42 am
- You don't have to reformat your system (by which I assume you mean your C: drive)
- If you have a database that is growing, its space usage will grow....
April 29, 2014 at 7:26 am
It looks like the error is in the MERGE statement, not an ALTER INDEX...REBUILD.
Maybe you could post the DDL of the tables involved and the entire MERGE statement that throws...
April 28, 2014 at 12:22 pm
Here's one solution I found:
On the subreport properties in the main report, there is a KeepTogether property that is set to false by default.
Once I changed that to true on...
April 25, 2014 at 11:35 am
FWIW I just landed a job like that where I lacked all the front-end skills. They asked for the usual SQL stuff plus ASP.NET, C# and other front-end stuff....
April 25, 2014 at 11:17 am
Viewing 15 posts - 181 through 195 (of 268 total)