Search Results

0
votes

Free SQL Server development tools

As someone developing a Java app against SQL server on Linux (yeah, weird combination), I swear by Squirrel SQL, a multi-db object browser, …
0
votes

Extending MSSQL full-text index to search through foriegn keys

As I understand it (I've used SQL Server a lot but never full-text indexing) SQL Server 2005 allows you to create full text indexes against a view. So you could create a view on SEL …
6
votes

Retriving date in sql server, CURRENT_TIMESTAMP vs GetDate()

CURRENT_TIMESTAMP is standard ANSI SQL, and so is theoretically one tiny little island of 'don't need to change' amongst your thousands of SQL Server-specific lines of SQL if you ever need to move …
2
votes

Configure Hibernate to escape underscores in LIKE clause using SQL Server dialect

If you're using Criteria to create the query, you can create your own expression which subclasses org.hibernate.criterion.LikeExpression, using one of the protected constructors that takes in 'Char …
2
votes

SQL Server / MySQL / Access - speeding up inserting many rows in an inefficient manner

The single biggest thing that will kill performance here is the fact that (it sounds like) you're executing a million different INSERTs against the DB. Each INSERT is treated as a single operation. …
1
vote

Converting MSSQL GetUTCDate() into PHP/Unix/MySQL Ticks

You can do this in MSSQL relatively easily. For the current date: SELECT DATEDIFF(s, CONVERT(DATETIME, '1970-01-01'), GETUTCDATE()) returns the INT number of secon …
1
vote

sql group by versus distinct

A little (VERY little) empirical data from MS SQL Server, on a couple of random tables from our DB. For the pattern: SELECT col1, col2 FROM table GROUP BY col1, col2 …
2
votes

High-performance wiki-schema

Firstly (and out of curiosity) how does the current schema indicate what the current version is? Do you just have multiple 'WikiDocument' entries with the same DocumentTitle? I'm also not c …
1
vote

How can I insert random values into a SQL Server table?

I've had a play with this, and found a rather hacky way to do it with the use of an intermediate table variable. Once @randomStuff is set up, we do this (note in my case, @MyTable is a tabl …