Welcome ...        
          
  ... Visiting Newsgroup Users!
 
  See "What makes SQLA different from the newsgroups?" in the FAQ.
 

Tagged Questions

1
vote
3answers
48 views

SA11 Log all commands

How can I log all commands the clients are sending to database server? I wanna to "see" those commands to know how entity framework 4.0 is generating sqls and maybe try to change …
3
votes
0answers
47 views

How to avoid execution of DatabaseStart Event

When your Database contains a EVENT of type DatabaseStart and you are able to crash the Database Engine during startup with your fabulous code. How would you fix the database to …
1
vote
2answers
47 views

Is ‘-12345678901234566.00’ the correct result of str(-12345678901234567.0001,40,2)

When i execute the following command I'm a little bit surprised of the result. select -12345678901234.0001 as TestVal, str( TestVal, 40, 2) as stringVal union all select -123456 …
3
votes
3answers
114 views

Sql COUNT Performance Question

Structure of Example table: Id, Integer (PK) Name, Varchar(100) Description, Text I need to know if exists difference in performance between: SELECT COUNT(*) FROM Example; an …
0
votes
2answers
59 views

BUG In SA 11 .NET Driver

I think I found a bug in ADO.NET driver for SA 11. if I try to execute this code: DbCommand command = connection.CreateCommand(); command.CommandText = "select 'my ' + 'strin …
1
vote
3answers
62 views

BUG In SA 11 .NET Driver (2)

As suggested me Breck, I'm starting this thread for this question. That's my code: using System; using System.Data.Common; namespace SA11BUG { class Program { st …
3
votes
2answers
64 views

What should I review when I migrate from 9.0.2 to 11.x?

What should I review (stored proc, view, select, etc) before migrate an database (with about 66gb) from ASA 9.0.2 to SQLA 11?
1
vote
1answer
18 views

NHibernate + SA 11

Can I use (in production) Mr. Paulley SA 11 dialect for NHibernate? I'm thinking starting using it, but in this blog post, he told that's beta. Are anyone using it?
1
vote
2answers
65 views

How to crash a SA11 engine with a simple SQL statement

While testing High Availability I want to simulate a failing primary server. Killing the process via task manager would work, but I just wanted a more elegant solution using plain …
2
votes
1answer
38 views

2 Servers + 1 Database in an NAS

Can I use High Availability of SQL Anywhere, with a single copy of db files, shared between server on a NAS? I need something like this to prevent hard failures with on downtime o …