Viewing 15 posts - 1,246 through 1,260 (of 1,838 total)
In your CALL query, you need to put an actual ? instead of the word Year so that Excel Query knows it's a parameter. The first time you do...
November 22, 2016 at 6:47 am
Gary Varga (11/22/2016)
Unnormalised = ignorant
Inappropriate normalisation (i.e. missed, as opposed to actively not chosen, denormalisation) = lazy
Sounds about right 😉
I worked in the IT department of a rental car company...
November 22, 2016 at 6:34 am
chrisn-585491 (11/20/2016)
Our last generation of software was denormalized. (Against my advice, but I still have to deal with the issues this architecture caused.)
I think there is a very specific distinction...
November 21, 2016 at 1:57 pm
I still see 2 foreign keys from the fact to Account table, and 2 foreign keys from the fact to Broker table. In a post on 11/16 you said...
November 21, 2016 at 11:28 am
DouglasH (11/21/2016)
Things to look out for : Differences in connection settings, parameter sniffing, parameter conversion issues. Also maybe you could post your .net code...
November 21, 2016 at 10:11 am
Eirikur Eiriksson (11/19/2016)
Can you post the DDL (creat table) script for the SUMMARY and the JASPER_REBATES_SUMMARY tables, the full code of the stored procesure and the actual execution plan please?😎
I'd...
November 21, 2016 at 9:43 am
I've found this technique to work in Excel 2013:
http://codebyjoshua.blogspot.com/2012/01/get-data-from-sql-server-stored.html
for the command text use the format:
{CALL dbname.dbo.GetData (?)}
in the Parameters dialog, there's an option to "Get the value from the following...
November 21, 2016 at 9:19 am
etl2016 (11/18/2016)
etl2016 (11/18/2016)
November 21, 2016 at 7:08 am
tschuler-738392 (11/18/2016)
from docsadm.client as c
left join docsadm.matter as m
on c.client_id = m.client_id
where c.client_name <> ''
and m.matter_name <> ''
and c.client_id not like '%.%'
order by c.client_id
docsadm.client table columns client_name and client_id...
November 18, 2016 at 2:13 pm
logon triggers can be found in sys.server_triggers
SELECT * from sys.server_triggers where name LIKE '%connection_limit%';
November 17, 2016 at 3:00 pm
JohnNash (11/17/2016)
I have created a windows service which will trigger a sql server agent job when a specific file arrives in to the file server folder, so that the...
November 17, 2016 at 9:50 am
in express edition, you still have access to things like BCP, SQLCMD, the BULK INSERT command, etc, so there are options. The challenging part would be dealing with 4...
November 17, 2016 at 8:14 am
Gaja (11/17/2016)
I am inserting data from customer table to fact_customer
customer table has duplicate records with Customer ids but some of columns having different data i want to combine this...
November 17, 2016 at 7:39 am
kevin.obrien 66193 (11/16/2016)
The question to the OP is ... are CounterpartyAccountKey and GenevaAccountKey mutualy exclusive? It appears to me from the reading that they may very well be (normally a...
November 17, 2016 at 6:52 am
to find out what's hurting your CPU is a different problem, you'll probably want to examine the dynamic management views to see what queries are causing the most CPU, such...
November 16, 2016 at 9:55 am
Viewing 15 posts - 1,246 through 1,260 (of 1,838 total)