Viewing 15 posts - 256 through 270 (of 370 total)
If you are going to connect to Informix from SQL Server you need an ODBC driver to connect to it. Data Direct has some drivers (www.datadirect.com/products/odbc) but you probably...
December 6, 2006 at 2:17 pm
This might be the opportunity you need to set up different users and passwords for the projects instead of using the standard System Administrator login which no one should have...
December 4, 2006 at 1:50 pm
If you are renaming them (a real pain), underscores (_) will also work as a replacement for dashes with no problems. I've used both 'CamelBack' and underscores and I think...
December 4, 2006 at 9:04 am
I am having the same problem. I just downloaded Management Studio Express today and registered both the Sql Server Express Edition that came with my Visual Studio .Net 2003 and...
November 15, 2006 at 11:53 am
If you backup the log WITH NO_TRUNCATE you will not free up any space which doesn't address the initial problem Mark had of running out of space. I've seen transaction...
November 1, 2006 at 2:49 pm
If you do backup the transaction log with truncate_only and shrink the log file, this would be a good time to do a full backup of the database. Since the...
November 1, 2006 at 11:41 am
Just curious, what kind of job needs to be run every 10 seconds?
Steve
October 24, 2006 at 9:12 am
Here's a sample of one I use from vb6:
gsSql = "EXEC sp_password '" + txtPassword.Text + "', '" + txtPWNew.Text + "', '" + txtUser.Text + "'"
gconGIMS.Execute gsSql
straight SQL:
EXEC sp_password 'old-password',...
October 20, 2006 at 8:40 am
Just a quick tip that may help to get all those column names easily and without typos; when working in query analyzer you can get a complete list of the field...
October 9, 2006 at 10:47 am
Another idea that might work for you is:
ORDER BY companyId, isnumeric(locationCode), len(locationCode), locationCode
Steve
October 9, 2006 at 10:30 am
I'm confused. If you are equating "SA-rights" as a Login that has been given the server role System Adminstrator (SysAdmin), this can only be given to Logins (individual or NT...
October 5, 2006 at 12:05 pm
What is your business need for trying to install a 7.0 DB? I would guess that you can't because, from what I've heard, to install a database on the same...
October 3, 2006 at 8:24 am
There is no autonumber field type but there are types of fields that can be given the Identity property that will automatically be incremented when a row is inserted. See...
September 26, 2006 at 1:50 pm
I'd also look into bringing over the Logins. They are stored in the Master Database. I don't think you would be able to restore or attach the old Master DB...
September 15, 2006 at 11:05 am
Maybe you want to use IDENT_CURRENT to get the last identity value generated for a specific table. From BOL
September 13, 2006 at 12:14 pm
Viewing 15 posts - 256 through 270 (of 370 total)