Forum Replies Created

Viewing 15 posts - 256 through 270 (of 2,436 total)

  • RE: Unable to convert date into smalldatetime

    both work for me:

    select cast (getdate() as smalldatetime)

    select convert(smalldatetime,getdate())

    select @@version

    results:

    -----------------------

    2009-07-17 09:16:00

    (1 row(s) affected)

    -----------------------

    2009-07-17 09:16:00

    (1 row(s) affected)

    ------------------------------------------------

    Microsoft SQL Server 2005 - 9.00.4207.00 (X64)

    (1 row(s) affected)

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Use sp_MSforeachtable to gen COUNT(*) for each table in MyDBname

    ... and yet another way to skin the cat ...

    sp_MSforeachtable @command1="select count(*) as '?' from ?"

    ... granted not efficient, nor possibly accurate ...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Over-Engineering

    No matter how large or small a software project is things can go well and on time.

    Testing on a modular level can be quite elegant and efficient. Take Unix and...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Over-Engineering

    hmmm ... get it right the first time - like NASA !

    http://www.sqlservercentral.com/articles/Editorial/67315/

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Execution times for Database Integrity Check Task Vs DBCC CHECKDB

    DBCC CHECKDB() --> this is executing in the default database which is probable master

    That is why it is so quick. Whereas ...

    DBCC CHECKDB(yous_database_name) --> is performing the DBCC on the...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Transfer DATA from Syabse to SQL2008

    Replication anybody ?

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: compressed (packed) datatype from mainframe

    Unless you are using an custom written application you will need to change (convert) all comp-3 (packed decimal) and comp (binary) data types to 'display' data on the mainframe first....

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Chaning SQL Cluster Service Account Passowrd

    We use a software package called ECM - Enterprise Change Management - we have 250+ SQL Servers - it handles non-clustered SQL Servers but has issues wioth clusters !

    Thats why...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: contiguous memory issue

    hope this will help & make sense up to the extent that the information applies:

    4GB RAM: /3GB (AWE support is not used)

    8GB RAM: /3GB /PAE

    16GB RAM: /3GB...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: contiguous memory issue

    Are you running 2000 Standard ot 2000 Enterprise ? If you are running SQL 2000 Standard then adding more memory to the server will not help since SQL 2000 Standard...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Keyword Case

    I have used many schemes for keyword usage in many programming languages over the last 27+ years. Maybe I am just getting lazy in my old age, all lower case...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Chaning SQL Cluster Service Account Passowrd

    You should be able to modify the password through the services msc beforehand. Do not restart any services until the password(s) have been changed via the services msc on all...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: transaction test!

    Very good question.

    How does this behavior stack up against ACID though ?

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Making Demands

    hmmm ... I live kind of simply so I would like things to be special like my Sundays usually are dining-wise ...

    breakfast - homemade biscuits and sausage gravy with think...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Test your problem solving skills!

    I agree with Jeff's first response ...

    Been in that same situation and did almoist the exact same thing, just used a few more words ...

    That manager was not long for...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

Viewing 15 posts - 256 through 270 (of 2,436 total)