all groups > sql server programming > october 2006 > threads for saturday october 7
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Connection String problem with SQL Server 2005
Posted by David at 10/7/2006 10:17:52 PM
Hello all
I am pretty new to SQL Server 2005, having come from Access 2000. I have
just purchased a copy of SQL Server 2005 Developers Edition and I am running
through some examples in my SQL Server 7/VB6 book.
In SQL Server 7 I could use the DSN-less connection string:
m_objConn.Open "Dr... more >>
What is the best way to send notifications of data chaneg to clients?
Posted by crbd98 NO[at]SPAM yahoo.com at 10/7/2006 9:36:30 PM
Hello All,
What is the best way to let client applications know that the data it
has has been updated?
In our application, each client gets information from the server and
needs to receive notification when the information has changed. Some of
the data are lists of items and others are indi... more >>
Incorrect parameters being received by SQL Server Stored Procedure ...
Posted by Vipul Pathak at 10/7/2006 7:50:46 PM
Hi Everybuddy,
I have a strange problem with VB6/SQL Server 2K. I am calling a stored
procedure from VB using ADODB.Command object. When I check the incomming
parameters into the stored procedure, that values in named parameters are
inter-changed (e.g. : Calling ABC(X=3, Y=7, Z=12) will result... more >>
Date / Time columns again
Posted by Mike Labosh at 10/7/2006 4:42:35 PM
CREATE TABLE ISAFirewall (
LogDate DATETIME, -- Looks like '2006-10-07 00:00:00.000' (date only)
LogTime DATETIME, -- Looks like '1899-12-31 16:41:22.000' (time only)
-- Lots more columns here, as documented by ISA Firewall Service,
DateTimeStamp AS
CAST(
CONVER... more >>
Single User Database
Posted by Greg Horwood at 10/7/2006 4:41:02 PM
hi all,
I'm developing a commercial application, probably in VC++, which will
temporarily hold information gathered from various sources. I need a cheap
database engine for a single user. The most obvious choice is Access but I've
heard something about Microsoft's single user sql software. ... more >>
ASP.Net, Sql Server 2005, and XML
Posted by djamilabouzid NO[at]SPAM gmail.com at 10/7/2006 3:24:21 PM
Hi!
I work in a web site project which uses ASP.net and Microsoft SQL
Server 2005. I use XML and XSL for my pages. My problem is:
o As the data in the database contain some characters that are not
allowed by XML structure, I used CDATA for all my fields in order to
store them in the XML fil... more >>
Date-Only column, Time-Only column...
Posted by Mike Labosh at 10/7/2006 12:47:56 PM
I have these two columns:
LogDate DATETIME
LogTime DATETIME
That have data that looks like this:
LogDate LogTime
2006-10-07 00:00:00.000 1899-12-30 12:42:08.000
Because the bonehead software making the log entries wants to store them as
separate columns. Is... more >>
TempDB Transaction Log
Posted by Mike Labosh at 10/7/2006 11:13:40 AM
I just found this in the Application Event Log: "The log file for database
'tempdb' is full. Back up the transaction log for the database to free up
some log space."
This SQL 2000 instance hosts nothing more than a single database containing
several unrelated tables that represent ODBC logs f... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
SQL routine to parse data
Posted by Bill nguyen at 10/7/2006 7:13:59 AM
I hope that someone can help parsing the following pattern in a column using
SQL syntax:
a:18: {i:0;i:408;i:1;i:409;i:2;i:410;i:3;i:411;i:4;i:413;i:5;i:414;}
a: = page_id
a:18 -> page_id = 18
Those within curly brackets { }
i:0;i:408
the 1st group i:0;
i : section order within a... more >>
how to get backup history of a device ?
Posted by sercan at 10/7/2006 12:38:01 AM
i want to list the contents of a device which i select such as Backup wizard
does..
i mean there is a device created and includes many backup history on it.So
how cud i query to get the list of backup that is previously backed up..??
master..sysdevices
msdb..backupfile
msdb..backupset
msd... more >>
Best indexing strategy
Posted by Gyruss at 10/7/2006 12:00:00 AM
What indexing strategy is more likely to appease the sqlserver gods with
respect to the queries below? My testing shows that a clustered index on
sequence, sent flag and a non-clustered index on sequence performs pretty
much the same as clustered index on sequence and a non-clustered index on... more >>
|