Viewing 15 posts - 646 through 660 (of 760 total)
flebber.crue (4/24/2012)
Importantly the intersection table looks like it would resolve a lot of the...
April 24, 2012 at 9:52 pm
Can you replace the "SomeText" in the tables with the actual text.....so that we get to have a look at what you are actually looking at.
This would help us provide...
April 24, 2012 at 6:53 am
shani19831 (4/24/2012)
Here is the query
selectorig_branch_no,
acct_no,
amt,
description,
create_dt,
charge_code,
tran_code, (select t2.tran_code from history as t2
where t2.tran_code in (157)
and t2.description like '%DDAC%'
and t2.create_dt = '20110802'
and t2.acct_no = t1.acct_no) as 'Charge...
April 24, 2012 at 6:28 am
What is 'SomeText'?....Is it literally the String 'Sometext' or is it just a hypothetical representation of "some text that you have in your tables"??
April 24, 2012 at 6:23 am
david.alcock (4/24/2012)
Is it OK practice to store user details in a database table, only asking as I strictly use sql logins or windows auth?
I assume that you are talking about...
April 24, 2012 at 6:06 am
vahid.arr (4/24/2012)
vinu512 (4/24/2012)
From what I understand you should...
April 24, 2012 at 6:03 am
These might help you to learn Encryption:
SQL SERVER – Introduction to SQL Server Encryption and Symmetric Key Encryption Tutorial with Script[/url]
You could even do it from the client...
April 24, 2012 at 4:26 am
andersg98 (4/20/2012)
This is a job for SSIS.
+1 seems like pure ETL. DTS Wizard would do this for you.
April 24, 2012 at 4:21 am
When I start designing a database I divide everything in terms of entities.
And then start designing master tables for every uniquely identifiable group of identities.
Then I create other tables and...
April 24, 2012 at 4:16 am
lol....that's a really good way of doing it.
Nice 1 Eugine.
April 24, 2012 at 3:44 am
Please post DDL of the tables and some readily consumable Sample Data.
April 24, 2012 at 3:38 am
I don't have a query for this but in normal circumstances nvarchar takes double the size as varchar.
Storage Size
Varchar - Actual Length (in bytes)
NVarchar - 2 times Actual Length...
April 24, 2012 at 3:19 am
Wouldn't a trace to check which query is doing what on which table help?
April 24, 2012 at 3:04 am
One table for User Details is fine. You just need to check if the data that the table houses is in Normalized Form.
From what I understand you should have another...
April 24, 2012 at 2:58 am
Yea. the OP is not elaborate enough for us to know what the requirement actually is
April 24, 2012 at 2:43 am
Viewing 15 posts - 646 through 660 (of 760 total)