Viewing 15 posts - 6,496 through 6,510 (of 26,490 total)
pwalter83 (6/20/2014)
Sachin Nandanwar (6/20/2014)
CREATE TABLE [dbo].[GL](
[Sequence] [int] NOT NULL,
[WK NO] [int] NULL,
[AC] [nvarchar](10) NULL,
[COMP] [nvarchar](10) NULL,
[USD_AMOUNT] [numeric](16, 2)...
June 20, 2014 at 11:24 am
Chord77 (6/20/2014)
Beatrix Kiddo (6/20/2014)
How long have you been in the role? Maybe they're trying to get you used to their environment for a few months?
That was my initial thought.
But then...
June 20, 2014 at 9:48 am
river1 (6/19/2014)
I have this t-sql
CONVERT(VARCHAR(10),dt_inicio,105) >= CONVERT(VARCHAR(10),'01-01-2013',105)
the comparation is not correct because I'm comparing strings.
I would like to compare the day, month and year of the two dates.
How can...
June 19, 2014 at 11:18 pm
You will have to use T-SQL to accomplish your task.
June 18, 2014 at 4:24 pm
DBANoobie (6/18/2014)
I was told that if I wanted to setup mirroring between multiple instance on the same server that each endpoint had to be different number. Is that true?...
June 18, 2014 at 3:34 pm
Be sure to check this out as well: http://ola.hallengren.com/.
June 18, 2014 at 9:53 am
Grant Fritchey (6/18/2014)
SQLRNNR (6/18/2014)
jasona.work (6/18/2014)
GilaMonster (6/17/2014)
"No pressure to work overtime"...
June 18, 2014 at 9:48 am
I prefer NOT to use maintenance plans. Much more flexibility using procedures like Ola's (or home grown ones) to accomplish database maintenance processes.
June 17, 2014 at 11:13 am
Lowell (6/17/2014)
what happens when you include the shcme aname explicitly?
select schema_name(schema_id),name, object_id (base_object_name),object_id (schema_name(schema_id) + '.' + base_object_name) from sys.synonyms
The column base_object_name contains the <database>.<schema_name>.<object_name> of the synonym base object.
June 17, 2014 at 9:55 am
Look at this: http://msdn.microsoft.com/en-us/library/ms176105.aspx
As long as you are on the same server it should work. Here is some sample code to start with:
select
syn.name SynonymName,
...
June 17, 2014 at 8:38 am
Not much we can really do from here with the information provided. My suggestion is to get the actual execution plan from the queries involved and look at the...
June 17, 2014 at 8:06 am
Still slightly confused. Are you shrinking first then rebuilding indexes or the other way around?
And, why are you shrinking the database anyway?
June 16, 2014 at 12:06 pm
Michael Valentine Jones (6/16/2014)
It's fairly annoying to have to put in a code tag...
June 16, 2014 at 11:45 am
New Born DBA (6/16/2014)
June 16, 2014 at 11:42 am
First thing to understand is FILLFACTOR. Here is what it says under CREATE INDEX:
FILLFACTOR = fillfactor
Specifies a percentage that indicates how full the Database Engine should make the leaf...
June 16, 2014 at 11:39 am
Viewing 15 posts - 6,496 through 6,510 (of 26,490 total)