Viewing 15 posts - 196 through 210 (of 240 total)
Tricky, I failed to realize the synonym would be pointing to the view instead of the table that had been dropped.
Great question!
June 20, 2014 at 7:31 am
GilaMonster (6/19/2014)
OCTom (6/19/2014)
What gives? I thought all of us developers got admin rights!?!? :laugh:
On dev servers, I'm very happy to give developers db_owner of the DB they're working in, alter...
June 19, 2014 at 9:56 am
Great scripts, thanks a lot! I've added them to my personal library, with you as the source.
June 19, 2014 at 9:13 am
Great article, very useful for getting started with MDX.
June 13, 2014 at 8:04 am
In that case, I'd temporarily give the login the access it needs to connect, then run a sql trace on the login and see everything it's touching. There must...
May 23, 2014 at 1:06 pm
I can tell you based on my time working ExcelForum.com a few years ago the issue of people asking questions and then not acknowledging answers is certainly not unique to...
May 23, 2014 at 7:54 am
If the added field in the select list is not in the index, the query optimizer only has two options:
1. Look up the rows you need with the nonclustered index,...
May 22, 2014 at 1:17 pm
Make sure the behavior of each job step is "Go to the next step".
May 22, 2014 at 12:14 pm
I agree with SQLRNNR, and to test this you can add the extra field you are selecting to the current nonclustered index as an included field and see if that...
May 22, 2014 at 10:21 am
ronan.healy (5/22/2014)
it come out like this
PK_GLSectionSectionNumber
6TestNULL
1Assets1
2Liabilities2
3Revenue3
4Expense4
5Capital5
is there a way to auto incremnet the scention number number
If it should be autoincremented, can it be the identity field? What is the...
May 22, 2014 at 9:30 am
I believe this would do the trick:
INSERT INTO table1
( SECTION )
SELECT SECTION
...
May 22, 2014 at 8:57 am
Rod at work (5/22/2014)
david.gugg (5/21/2014)
I've always been successful by scripting the job to a new Query Editor Window, then changing the connection on that window to the destination server.
So you...
May 22, 2014 at 8:19 am
When you run the query, what kind of scan/seek is being done on dbo.cb? Is there an index that contains begindate?
May 22, 2014 at 8:16 am
Viewing 15 posts - 196 through 210 (of 240 total)