Viewing 15 posts - 5,251 through 5,265 (of 7,505 total)
How about a kind of split function that returns a table. (tvf)
and performing a left outer join to the same tfv with the new contend.
declare @mycolumn varchar(max)
select @mycolumn =...
February 7, 2008 at 2:46 pm
search the SSC forums "developer sysadmin" and you'll find many hits .
February 7, 2008 at 2:40 pm
Actualy best practise still is using Dr. Codd's rules fo Normalization of the Data Base Relational Model. http://www.sqlservercentral.com/articles/Advanced/coddsrules/1208/
An identity is just an incrementing number (altough you can increment with a...
February 7, 2008 at 2:38 pm
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
Viewing 15 posts - 5,251 through 5,265 (of 7,505 total)