Viewing 15 posts - 1,546 through 1,560 (of 7,502 total)
Greg Edwards-268690 (12/9/2011)
ALZDBA (12/9/2011)
With fixed ports, you can also register the spn...
December 11, 2011 at 11:32 am
Jeff Moden (12/11/2011)
ALZDBA (12/11/2011)
That's one of the reasons some of us try to stick with ansi sql and never use proprietary language features.But, as Jeff mentioned, excel.
Heh... It's a personal...
December 11, 2011 at 11:22 am
george sibbald (12/10/2011)
powershell.anything on the BI side - SSIS, SSRS, SSAS
Darned, I even forgot that one, despite of my article "Me, myself and Powershell[/url]" :crying:
Thank you for bringing it up,...
December 11, 2011 at 7:14 am
The last replies have been to have a db per customer in your set up. That's the one I would go for for simplicity of management, upgrades, specific client tailor...
December 11, 2011 at 7:10 am
My rules of thumb for date/datetime data:
1) always store in the appropriate data type (date / datetime)
2) don't put functions on columns, so if you need e.g. 23 year old...
December 11, 2011 at 6:46 am
just my 2ct to add ...
it also depends if you have more than just NULL/0/1 ( e.g. you want to know if the data "is being prepared" or "is being...
December 11, 2011 at 6:29 am
your backup database command isn't initializing the bak file.
Things to check:
- the @BackupPath backup file name composition (as it still has the same name as the day before, and...
December 11, 2011 at 6:21 am
suppose _you_ know the matching criteria, and only want to know if rows defer ... have a look at checksum and only show rows that have non-matching checksum values for...
December 10, 2011 at 7:23 am
- How about windows 7/2008(r2)
- networking basics
- communication skills
December 10, 2011 at 6:29 am
Keep in mind if your date columns are of datatype datetime don't use BETWEEN but use
col >= @begin and col <= @end
SQLServer has an issue with datetime data typed...
December 9, 2011 at 11:55 am
except for the bad choice of the stored procedure name [SP] posting the code of the sproc would help us helping you very much.
December 9, 2011 at 11:47 am
Nice article. And what's most important .... It will help people diagnose and solve this kind of issues !
With fixed ports, you can also register the spn yourself ( after...
December 9, 2011 at 11:21 am
With your jobs, also keep in mind to check your db-state in a first step ...
cfr
if exists ( select 1
from sys.database_mirroring
...
December 9, 2011 at 7:16 am
If you cannot relate to a change at application side, or db server software level side, I would double check all physical drives this server is connected to.
We've had a...
December 9, 2011 at 5:35 am
Now there's a definite "it depends" 😉
Would you expect your db to consume the freed space fairly soon ? Don't shrink it. You'll save the extention overhead if sql needs...
December 8, 2011 at 11:48 pm
Viewing 15 posts - 1,546 through 1,560 (of 7,502 total)