Viewing 15 posts - 1,726 through 1,740 (of 14,953 total)
Brandie Tarvin (4/12/2012)
A little boy goes to his father and asks, "Daddy, how was I born?"
The father answers,"Well, son, I guess one day you will need to find out anyway!
Your...
April 12, 2012 at 6:42 am
Lynn Pettis (4/11/2012)
Lynn Pettis (4/11/2012)
Not sure but I think this individual, xenophilia, should change their name to xenosqlia.
Please, someone tell me why, just why do I keep helping someone who...
April 12, 2012 at 6:39 am
Lynn Pettis (4/11/2012)
Not sure but I think this individual, xenophilia, should change their name to xenosqlia.
I now have, "I'm gonna make you SQL like a pig." stuck in my head...
April 12, 2012 at 6:38 am
Sean Lange (4/11/2012)
April 12, 2012 at 6:37 am
The only way to do that is to use "dbo.TblA", instead of just "TblA".
Note that doing so actually makes the proc run faster, and allows more concurrent users to run...
April 12, 2012 at 6:22 am
All you need to do to build whatever rules you need is make sure the hours table has in it what you want for your rules. If, for example,...
April 12, 2012 at 6:20 am
In queries, procs, etc., I make sure to ALWAYS use schema names for objects, unless I specifically want the query to pull different data for different users. Speeds up...
April 11, 2012 at 11:47 am
GSquared (4/9/2012)
Run in the same scope?Any schemas in use (besides dbo, of course)?
Data volatile?
Isolation levels in use?
Those questions.
Are the two scripts (query and proc execute) being run in the same...
April 9, 2012 at 1:17 pm
Real deletes vs soft deletes is based on local business needs.
I've worked for companies that never deleted (or even updated) anything. It was all handled by row status indicators.
I've...
April 9, 2012 at 1:10 pm
Additional:
Change "GETDATE()" to a specific date and time, like 9 AM today. You'll see very different "hours counts" for the different categories of tickets.
April 9, 2012 at 1:07 pm
What you need to add to this is an hours of the day table. It would list whether an hour is "work", "after", "overnight", or whatever business category an...
April 9, 2012 at 1:06 pm
I doubt sample tables and DDL/DML will help on this. It'll be something that wouldn't normally be included in those.
Check the questions I posted earlier. See where those...
April 9, 2012 at 12:43 pm
Probably not very well at all.
Can you stage the data from the source using some sort of delta-sensitive process? Something that just pulls over new/updated rows?
April 9, 2012 at 12:30 pm
You can sort of do that if you're updating one table, or always updating the same table last.
A trigger fires either when the data is inserted/updated, or instead of the...
April 9, 2012 at 12:28 pm
Run in the same scope?
Any schemas in use (besides dbo, of course)?
Data volatile?
Isolation levels in use?
April 9, 2012 at 12:23 pm
Viewing 15 posts - 1,726 through 1,740 (of 14,953 total)