Viewing 15 posts - 5,251 through 5,265 (of 7,502 total)
FYI
Actualy with SQL2005 this would not make sence at all !
Reason ?
The ssis service only fulfills the role of "gateway" to if you want to manage the packages via...
February 7, 2008 at 2:18 pm
you need to set you destination connection parameter
"retainsameconnection" to true (false by default) to be able to use
#tmp tables !
February 7, 2008 at 2:43 am
first it will try to find the (unqualified) object using username.object, if it cannot
find that, it will try with dbo.object.
If the connected user is the actual database owner, his db-username...
February 7, 2008 at 1:36 am
IMO the big difference is that the user assigned by sp_changedbowner can
create objects like "create table xyz (col1 int)" and the object will be created as dbo.xyz.
Members of the...
February 7, 2008 at 12:47 am
dbid 2 = msdb
Perform DBCC checkdatabase for msdb !
You can even post the results within this thread. :hehe:
February 6, 2008 at 12:39 pm
just to add ...
if you are planning to use reporting server, keep in mind it only supports accounts with a maximum character length of 20 characters!!
February 6, 2008 at 12:37 pm
You'll need another filegroup.
Keep in mind that the clustering index actualy contains all table data, you may not want to move that to your indexes filegroup.
Also keep in mind, you...
February 6, 2008 at 12:34 pm
you could install a second instance of sql2005 and use Windows system resource manager (WSRM)
to govern CPU usage %.
WSRM is also available for x64 !
February 6, 2008 at 8:45 am
Mark (2/5/2008)
WITH CTE AS (
SELECT a.AccountID,
(SELECT b.Date AS "@Date",
...
February 5, 2008 at 1:27 pm
I'd suggest you use a nested table expression, meaning
select nestedTSel.*
, [Monthly Pac] ....
from ( select 'Monthly Pac' = CASE
WHEN tPolicyBillPrem.POL_BILL_TYP_CD = '4' AND tPolicyA.POL_CSTAT_CD = '1' THEN tPolicyBillPrem.POL_SNDRY_AMT
ELSE 0
END,
'Annualized Premium'...
February 4, 2008 at 2:07 pm
Script your SSMS changes to the table and you'll see it does something
completely different than you think.
Using SSMS it will not perform alter table alter column ...
but it will...
February 4, 2008 at 2:01 pm
With sqlserver it doesn't work as with msaccess !
declare @myvar int
set @myvar = 15
select ... from myobject where thecolumn=@myvar
With odbc this would mean you define a commandobject,
type=storedprocedure
commandtext='select ... from myobject...
February 4, 2008 at 7:47 am
Can you test what happens if you alter the colums to nvarchar(max)?
This datatype is prefered in sql2005.
February 3, 2008 at 10:17 am
TheSQLGuru (2/1/2008)
February 1, 2008 at 8:07 am
Viewing 15 posts - 5,251 through 5,265 (of 7,502 total)