Viewing 15 posts - 2,146 through 2,160 (of 5,394 total)
SQL Kiwi (1/11/2012)
DECLARE @MYCODE int = NULL
DECLARE @ID int = NULL
DECLARE @OUTPUT TABLE (ID int)
MERGE...
January 11, 2012 at 10:41 am
Something else is eating all the memory, apparently.
What else is running on this box?
Also, are you sure you're having memory issues? What's the PLE for this instance?
January 11, 2012 at 10:35 am
I can't make your sample data for dbo.account fit into the table defintion you posted.
I get "string or binary data would be truncated".
January 11, 2012 at 10:31 am
Sachin 80451 (1/11/2012) - via Private Message
CREATE TABLE dbo.account
( ID INT IDENTITY(1,1) PRIMARY KEY CLUSTERED,
accountid Varchar(50),
name varchar(50),
Tpl_Traderred INT,
ownerid uniqueidentifier
)
CREATE TABLE dbo.contact
( ownerid uniqueidentifier,
Owneridname nvarchar(160)
)
CREATE...
January 11, 2012 at 10:24 am
Brandie Tarvin (1/11/2012)
Gianluca Sartori (1/11/2012)
WayneS (1/11/2012)
Looks like the same hat to me.
It is. I spent two hours with PhotoShop to put Roy's hat in Don's head. Don stole it from...
January 11, 2012 at 10:19 am
GilaMonster (1/11/2012)
Rebuild only what needs rebuilding, not everything.
You could use Ola Hallengren's[/url] maintenance solution for this particular point.
It's a great script.
January 11, 2012 at 8:21 am
May be an issue with the column name.
Have you tried enclosing the name in square brackets?
SELECT [Column Name]
FROM SomeTable
January 11, 2012 at 7:56 am
I did a quick Google search and I found a fix for your issue.
Here you go:
January 11, 2012 at 7:42 am
Well, maybe the backup media got currupted in the network copy. Wouldn't be the first time.
I don't know if you should blame RDP or not.
Is the behaviour consistent?
Is there any...
January 11, 2012 at 7:38 am
WayneS (1/11/2012)
Looks like the same hat to me.
It is. I spent two hours with PhotoShop to put Roy's hat in Don's head. 😛
January 11, 2012 at 7:21 am
Interesting.
Care to link documentation for this bug?
January 11, 2012 at 7:15 am
Really?
Do you understand what each step of that procedure does?
If so, would you still recommend it?
January 11, 2012 at 6:30 am
Roy Ernest (1/11/2012)
WayneS (1/10/2012)
Roy Ernest (1/9/2012)
When I get time...
January 11, 2012 at 6:21 am
Maybe, indented properly it's less confusing: 😉
WITH MeaningfulCTEName AS (
SELECT c.owneridname as BSC,
z.Tpl_TotalGWP as Total2012,
...
January 11, 2012 at 6:09 am
Well, first of all you have to decide what to do with your orphaned users. Fix? Delete?
For windows logins, you probably want to fix.
For SQL logins, you have to decide....
January 11, 2012 at 4:22 am
Viewing 15 posts - 2,146 through 2,160 (of 5,394 total)