Viewing 15 posts - 3,211 through 3,225 (of 7,498 total)
Jason Edward Rowland (1/12/2010)
The...
January 12, 2010 at 8:15 am
For sure this is a nice way of launching a package when you have no SQLAgent in your system ( express edtn )
But if you have SQLAgent in your instance,...
January 12, 2010 at 12:26 am
IMO for most of us, getting their first x64 is the upmost occasion to "finally" get a bigger server.
In many cases having 2 or 4 poc ( nowadays 4 to...
January 12, 2010 at 12:03 am
You have a circular reference !!!!
Table2 has a FK to Table3
AND
Table3 has a FK to Table2
- What's the point ??
- are the FK columns Nullable ?
Avoid circular references !
January 11, 2010 at 4:44 am
/* 1- create database d1;*/
create database d1;
/* 5- create new login login1. */
CREATE LOGIN [Login1] WITH PASSWORD=N'Login&', DEFAULT_DATABASE=[master], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF
GO
/* 2- create new user u1 */
USE [d1]
CREATE USER [u1] FOR...
January 11, 2010 at 4:31 am
Budi Hertanto (1/8/2010)
I still got error using FOR LOGON TRIGGER, even I'd already using SQL SERVER 2005 SP3. Do I need configure something else?
The value of @@VERSION show:
Microsoft SQL Server...
January 8, 2010 at 11:18 pm
IMO, sampling the proc cache on a daily basis is a way to long interval.
It is indeed a good way with minimal impact and no modification of existing stuff.
FWIW I...
January 8, 2010 at 3:40 pm
Don't shoot me if it doesn't perform as expected.
You could add a persisted derived column and partition on the combination of the flagprocessed and the stringconverted datetime combined..
Keep min mind...
January 8, 2010 at 5:35 am
another nifty thing we've been provided with :
declare @TestD varchar(12);
set @TestD = '1e1'
declare @testINT integer
begin try
set @testINT = convert(float,@TestD)
Print '[' +...
January 8, 2010 at 5:01 am
the query will provide the same results. partitioned or not.
If you are refering to the sliding window technique, off course, you should first check it the partition only contains data...
January 8, 2010 at 4:43 am
is your app user connected to the correct database ???
(Always specify your wanted database at connect time, don't rely o "default database" behaviour)
January 7, 2010 at 2:29 pm
double check your client software has SP4 applied (or the software level of your connected SQL2000 instance).
January 7, 2010 at 2:27 pm
GSquared (1/7/2010)
Krasavita (1/7/2010)
How many db can we have per server and how much memory in total can I have?Thank you
Servers usually aren't all that loud, but the limit would really...
January 7, 2010 at 2:24 pm
Or by activating a login trigger (needs sp2) which only alows 'sa' or members of sysadmins sqlgroup.
Could be usefull if you intend to acivate it for a maintenance window, but...
January 6, 2010 at 6:23 am
Viewing 15 posts - 3,211 through 3,225 (of 7,498 total)