Viewing 15 posts - 2,296 through 2,310 (of 2,356 total)
Your sample data makes it tough, but here is my shot at it:
SELECT
CASE WHEN T1.BUTY = 'AD' THEN REPLACE(T1.SUBTYPE, 'EQUIPMENT P&L', 'OTHER DIRECT COSTS ')
...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
April 6, 2011 at 12:45 pm
martin.edward (4/5/2011)
Hi Steve,I still get replication when I do this. Is there a way I could control this ?
When you say replication, do you mean repeated rows?
You...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
April 5, 2011 at 5:27 am
One of the first things you will need to do is to set up comparisons between sales, orders, and store volume.
For example,
Stores over 10k in volume:
Sell 5k of fries,...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
April 4, 2011 at 2:33 pm
That is the proverbial horse of a different color!
As for getting more memory from the admins, I have no advice other than begging and pleading.
Good luck!
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 17, 2011 at 9:19 am
What is missing in this calculation is attention to the disk subsystem. I have worked on far too many systems that have been configured with little attention to the...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 17, 2011 at 4:50 am
bitbucket-25253 (3/15/2011)
Before making the change that the customer is requesting.As an IDENTITY the each value is unique.
Unless a column with an IDENTITY is defined as a primary key...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 15, 2011 at 10:42 am
Can you right click on the job a create the scripts?
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 8, 2011 at 3:14 pm
wenkat_j (3/7/2011)
(T3.lastchangedtimestamp between
ImportFromDate=? and ImportToDate=?)
these two parmeters are already defined in the datastage .
any...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 8, 2011 at 1:32 pm
Do you possibly have two schedules that are running at the same time?
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 8, 2011 at 1:28 pm
How about:
CREATE TABLE Junk.dbo.SchemaTest
(
Database_Name varchar(200),
Schema_name varchar(200),
Schema_Owner varchar(300)
)
sp_msforeachdb "USE [?]; INSERT INTO Junk.dbo.SchemaTest SELECT CATALOG_NAME, SCHEMA_NAME, SCHEMA_OWNER FROM INFORMATION_SCHEMA.SCHEMATA"
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 8, 2011 at 11:13 am
This error can be a couple things, none of which are obvious.
You didn't say if this happens every time, or is intermittent. What is the OS? If it's Windows 2008,...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 8, 2011 at 4:22 am
Same server, same database, same everything.
We tweaked some of the things in the report, such as sizing all of the text boxes properly and turning off CanGrow and CanShrink,...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 2, 2011 at 2:44 pm
Here's a thought.
1. Change the table to include a "database indicator" to hold the C or T values.
2. Make the version an integer.
3. Stop using the function and...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 28, 2011 at 12:32 pm
I have seen this regularly, and it can be a pain to solve without a lot of trial and error. I am struggling with it right now on a...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 15, 2011 at 8:34 am
I looked in the registry, and in almost every file I could think of on the drives, and under the rock in my backyard. I couldn't find it.
...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 3, 2011 at 11:38 am
Viewing 15 posts - 2,296 through 2,310 (of 2,356 total)